We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ba1804 commit b93bf5bCopy full SHA for b93bf5b
src/routes.js
@@ -131,10 +131,11 @@ module.exports = {
131
'/challengeSettings': {
132
get: {
133
controller: 'ChallengeSettingController',
134
- method: 'searchChallengeSettings',
135
- auth: 'jwt',
136
- access: [constants.UserRoles.Admin, constants.UserRoles.Copilot],
137
- scopes: [CHALLENGE_SETTINGS.READ, CHALLENGE_SETTINGS.ALL]
+ method: 'searchChallengeSettings'
+ // TODO: We may not need auth here. Temporarily disabling auth
+ // auth: 'jwt',
+ // access: [constants.UserRoles.Admin, constants.UserRoles.Copilot],
138
+ // scopes: [CHALLENGE_SETTINGS.READ, CHALLENGE_SETTINGS.ALL]
139
},
140
post: {
141
0 commit comments