Skip to content

Commit

Permalink
Small fix for linkage
Browse files Browse the repository at this point in the history
  • Loading branch information
arcshiftsolutions committed Oct 26, 2023
1 parent c26e8f0 commit da5a9bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/components/edx/exchange.js
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ async function createSchool(req, res) {

return res.status(HttpStatus.ACCEPTED).json(result);
} catch (e) {
await logApiError(e, 'createSchool', 'Error ocurred while starting a create school saga.');
await logApiError(e, 'createSchool', 'Error occurred while starting a create school saga.');
return errorResponse(res);
}
}
Expand Down
1 change: 1 addition & 0 deletions backend/src/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ nconf.defaults({
newSecureExchangeSagaURL: process.env.EDX_API_URL + '/exchange/new-secure-exchange-saga',
secureExchangeCommentSagaURL: process.env.EDX_API_URL + '/exchange/secure-exchange-comment-saga',
moveSchoolSagaURL: process.env.EDX_API_URL + '/exchange/move-school-saga',
createSchoolSagaURL: process.env.EDX_API_URL + '/exchange/create-school-saga',
roleAdmin: process.env.EDX_ADMIN,
teamRoles: {
pen: process.env.EDX_PEN_TEAM_ROLES ? process.env.EDX_PEN_TEAM_ROLES.split(',') : '', // comma separated list
Expand Down

0 comments on commit da5a9bd

Please sign in to comment.