diff --git a/.vscode/settings.json b/.vscode/settings.json index 5a4bccf..a3b540f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -13,6 +13,7 @@ "https://deno.land": true }, "cSpell.words": [ + "sproc", "USTZ" ] } \ No newline at end of file diff --git a/db/populateDefaults.ts b/db/populateDefaults.ts index 6f107b5..4bf0b2c 100644 --- a/db/populateDefaults.ts +++ b/db/populateDefaults.ts @@ -16,6 +16,9 @@ const actions = [ 'btn-joinWLEvent', 'btn-leaveEvent', 'btn-altEvent', + 'btn-joinReqApprove', + 'btn-joinReqDeny', + 'btn-joinReqAlt', ]; for (const action of actions) { await dbClient.execute('INSERT INTO command_cnt(command) values(?)', [action]).catch((e) => { diff --git a/src/buttons/_index.ts b/src/buttons/_index.ts index afd9474..f759784 100644 --- a/src/buttons/_index.ts +++ b/src/buttons/_index.ts @@ -8,6 +8,7 @@ import { joinEventButton } from './live-event/joinEvent.ts'; import { leaveEventButton } from './live-event/leaveEvent.ts'; import { alternateEventButton } from './live-event/alternateEvent.ts'; import { joinRequestButton } from './live-event/joinRequest.ts'; +import { alternateRequestButton } from './live-event/alternateRequest.ts'; export const buttons: Array