mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
42 lines
544 B
JavaScript
Executable File
42 lines
544 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,
|
|
},
|
|
visibility: {
|
|
type: String,
|
|
default: "public",
|
|
},
|
|
},
|
|
}
|