mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
37 lines
716 B
JavaScript
Executable File
37 lines
716 B
JavaScript
Executable File
export default {
|
|
name: "Post",
|
|
collection: "posts",
|
|
schema: {
|
|
user_id: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
required: true
|
|
},
|
|
message: {
|
|
type: String
|
|
},
|
|
attachments: {
|
|
type: Array,
|
|
default: []
|
|
},
|
|
flags: {
|
|
type: Array,
|
|
default: []
|
|
},
|
|
reply_to: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
updated_at: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
poll_options: {
|
|
type: Array,
|
|
default: null
|
|
}
|
|
}
|
|
} |