mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 11:59:11 +00:00
* feat: add discord interactions worker * feat(interactions): update CI/CD and terraform to add interactions * chore: fix lint issues * chore: fix build & emulation * fix(interactions): deployment + handler * chore: remove worker-dist via gitignore * feat: add /pickable-roles and /pick-role basis * feat: add pick, remove, and update the general /roleypoly command * fix: lint missing Member import
25 lines
930 B
TypeScript
25 lines
930 B
TypeScript
import { respond } from '@roleypoly/worker-utils';
|
|
|
|
export const ok = () => respond({ ok: true });
|
|
|
|
export const missingParameters = () =>
|
|
respond({ error: 'missing parameters' }, { status: 400 });
|
|
|
|
export const lowPermissions = () =>
|
|
respond({ error: 'no permissions for this action' }, { status: 403 });
|
|
|
|
export const accessControlViolation = () =>
|
|
respond({ error: 'member fails access control requirements' }, { status: 403 });
|
|
|
|
export const notFound = () => respond({ error: 'not found' }, { status: 404 });
|
|
|
|
export const conflict = () => respond({ error: 'conflict' }, { status: 409 });
|
|
|
|
export const rateLimited = () =>
|
|
respond({ error: 'rate limit hit, enhance your calm' }, { status: 429 });
|
|
|
|
export const invalid = (obj: any = {}) =>
|
|
respond({ err: 'client sent something invalid', data: obj }, { status: 400 });
|
|
|
|
export const notAuthenticated = () =>
|
|
respond({ err: 'not authenticated' }, { status: 403 });
|