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