handout-constants
Advanced tools
Comparing version 1.0.0 to 1.0.1
28
index.js
'use strict' | ||
export const ALL_PERMISSIONS = 'all' | ||
export const ALL_TARGETS = 'all' | ||
module.exports = { | ||
ALL_PERMISSIONS: 'all', | ||
ALL_TARGETS: 'all', | ||
export const CATEGORY_DEPLOY = 'deploy' | ||
CATEGORY_DEPLOY: 'deploy', | ||
export const MSG_LEVEL_OK = 'ok' | ||
export const MSG_LEVEL_INFO = 'info' | ||
export const MSG_LEVEL_RAW = 'raw' | ||
export const MSG_LEVEL_DEBUG = 'debug' | ||
MSG_LEVEL_OK: 'ok', | ||
MSG_LEVEL_INFO: 'info', | ||
MSG_LEVEL_RAW: 'raw', | ||
MSG_LEVEL_DEBUG: 'debug', | ||
export const PERMISSION_GRANT = 'grant' | ||
export const PERMISSION_DENY = 'deny' | ||
PERMISSION_GRANT: 'grant', | ||
PERMISSION_DENY: 'deny', | ||
export const PERMISSION_CATEGORY_DEPLOY = 'deploy' | ||
export const PERMISSION_CATEGORY_USER_LIST = 'userList' | ||
export const PERMISSION_CATEGORY_USER_MANAGEMENT = 'userManagement' | ||
export const PERMISSION_CATEGORY_PERMISSION_MANAGEMENT = 'permissionManagement' | ||
PERMISSION_CATEGORY_DEPLOY: 'deploy', | ||
PERMISSION_CATEGORY_USER_LIST: 'userList', | ||
PERMISSION_CATEGORY_USER_MANAGEMENT: 'userManagement', | ||
PERMISSION_CATEGORY_PERMISSION_MANAGEMENT: 'permissionManagement' | ||
} |
{ | ||
"name": "handout-constants", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "Constants shared between handout server and client", | ||
@@ -5,0 +5,0 @@ "repository": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16
981