ecb0533605
* Separate different config source to each files * Freeze config object
16 lines
272 B
JavaScript
16 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'
|
|
}
|