mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
22 lines
437 B
JavaScript
22 lines
437 B
JavaScript
export default {
|
|
name: "RecentActivity",
|
|
collection: "recent_activity",
|
|
schema: {
|
|
user_id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
type: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
payload: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
default: Date.now,
|
|
}
|
|
}
|
|
} |