summaryrefslogtreecommitdiff
path: root/lib/config/enum.js
blob: 07cdfcfe3dc33e63d70e0ee407238e5a3421b95d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'use strict'

exports.Environment = {
  development: 'development',
  production: 'production',
  test: 'test'
}

exports.Permission = {
  freely: 'freely',
  editable: 'editable',
  limited: 'limited',
  locked: 'locked',
  protected: 'protected',
  private: 'private'
}