mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
28 lines
563 B
JavaScript
Executable File
28 lines
563 B
JavaScript
Executable File
export default {
|
|
name: "authorizedServerTokens",
|
|
collection: "authorizedServerTokens",
|
|
schema: {
|
|
client_id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
token: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
access: {
|
|
type: Array,
|
|
default: [],
|
|
},
|
|
name: {
|
|
type: String,
|
|
},
|
|
description: {
|
|
type: String,
|
|
},
|
|
createdAt: {
|
|
type: Date,
|
|
default: Date.now,
|
|
},
|
|
}
|
|
} |