mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
32 lines
637 B
JavaScript
Executable File
32 lines
637 B
JavaScript
Executable File
export default {
|
|
name: "ServerKeys",
|
|
collection: "server_keys",
|
|
schema: {
|
|
access_id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
secret_token: {
|
|
type: String,
|
|
required: true,
|
|
select: false,
|
|
},
|
|
access: {
|
|
type: Array,
|
|
default: [],
|
|
},
|
|
name: {
|
|
type: String,
|
|
},
|
|
description: {
|
|
type: String,
|
|
},
|
|
owner_user_id: {
|
|
type: String,
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
default: Date.now,
|
|
},
|
|
}
|
|
} |