Skip to content

Commit

Permalink
Merge branch 'main' into dev/divyak/get-attendee-email
Browse files Browse the repository at this point in the history
  • Loading branch information
divyack2 authored Sep 17, 2024
2 parents d048119 + 04c7208 commit 53136f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const DeviceRedirects: Record<string, string> = {
dev: `${API_BASE}/auth/dev/`,
mobile: "reflectionsprojections://--/Login",
admin: "https://admin.reflectionsprojections.org/auth/",
// admin: "http://localhost:5173/auth/",
pwa: "localhost:8081/Login",
};

export const ses = new AWS.SES({
Expand Down
2 changes: 1 addition & 1 deletion src/services/events/events-router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ eventsRouter.put(
// Delete event
eventsRouter.delete(
"/:EVENTID",
RoleChecker([Role.Enum.STAFF], true),
RoleChecker([Role.Enum.ADMIN], true),
async (req, res, next) => {
const eventId = req.params.EVENTID;
try {
Expand Down

0 comments on commit 53136f3

Please sign in to comment.