15 lines
243 B
JavaScript
15 lines
243 B
JavaScript
/**
|
|
* @module flitter-auth/deploy/models/Role
|
|
*/
|
|
|
|
/**
|
|
* This model stores the role data from Flitter-auth.
|
|
*
|
|
*/
|
|
module.exports = exports = {
|
|
schema: {
|
|
name: String,
|
|
permissions: [String],
|
|
data: String,
|
|
},
|
|
} |