Skip to content

Commit

Permalink
Merge pull request #5 from topcoder-platform/dev
Browse files Browse the repository at this point in the history
added manager role access
  • Loading branch information
ajefts authored May 2, 2017
2 parents f9fc258 + 666eb90 commit e0499e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lookerApiMapping.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ const USER_ROLE = require('./constants').USER_ROLE;
module.exports = {
"runLook": {
"url": "/looks/{look_id}/run/{result_format}",
"roles": [USER_ROLE.TOPCODER_ADMIN],
"roles": [USER_ROLE.TOPCODER_ADMIN, USER_ROLE.MANAGER],
"method": "get"
},
"allLooks": {
"url": "/looks",
"roles": [USER_ROLE.TOPCODER_ADMIN],
"roles": [USER_ROLE.TOPCODER_ADMIN, USER_ROLE.MANAGER],
"method": "get"
}
}

0 comments on commit e0499e1

Please sign in to comment.