-
-
Notifications
You must be signed in to change notification settings - Fork 671
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: 针对后端调整,修改控制台 devops db 集合名称;优化部分页面交互体验;
- Loading branch information
Showing
12 changed files
with
119 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const coll_prefix = 'devops_' | ||
|
||
const Constants = { | ||
function_collection: '__deployed__functions', | ||
trigger_collection: '__deployed__triggers', | ||
policy_collection: '__deployed__policies', | ||
coll_prefix: coll_prefix, | ||
cn: { | ||
admins: coll_prefix + 'admins', | ||
permissions: coll_prefix + 'permissions', | ||
roles: coll_prefix + 'roles', | ||
policies: coll_prefix + 'policies', | ||
functions: coll_prefix + 'functions', | ||
function_history: coll_prefix + 'function_history', | ||
triggers: coll_prefix + 'triggers', | ||
deploy_targets: coll_prefix + 'deploy_targets', | ||
deploy_requests: coll_prefix + 'deploy_requests' | ||
} | ||
} | ||
|
||
Object.freeze(Constants) | ||
Object.freeze(Object.cn) | ||
|
||
export { Constants } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.