17 lines
272 B
JavaScript
17 lines
272 B
JavaScript
|
'use strict'
|
||
|
|
||
|
exports.Environment = {
|
||
|
development: 'development',
|
||
|
production: 'production',
|
||
|
test: 'test'
|
||
|
}
|
||
|
|
||
|
exports.Permission = {
|
||
|
freely: 'freely',
|
||
|
editable: 'editable',
|
||
|
limited: 'limited',
|
||
|
locked: 'locked',
|
||
|
protected: 'protected',
|
||
|
private: 'private'
|
||
|
}
|