diff --git a/stacks/ApiStack.ts b/stacks/ApiStack.ts index 36ce0448..d1072079 100644 --- a/stacks/ApiStack.ts +++ b/stacks/ApiStack.ts @@ -22,8 +22,6 @@ export function ApiStack({ stack, app }: StackContext & { app: any }) { const api = new Api(stack, 'api', { defaults: { function: { - // Bind the eventsTable name to our API - bind: [ seshuSessionsTable, // registrationsTable, // deprecated diff --git a/stacks/StorageStack.ts b/stacks/StorageStack.ts index c4d7ceb8..7eb3e214 100644 --- a/stacks/StorageStack.ts +++ b/stacks/StorageStack.ts @@ -120,12 +120,12 @@ export function StorageStack({ stack }: StackContext) { }); return { - // registrationsTable, + // registrationsTable, // deprecated registrationFieldsTable, seshuSessionsTable, // purchasesTable, // deprecated purchasesTableV2, - // purchasablesTable, - // eventRsvpsTable, + purchasablesTable, + // eventRsvpsTable, // deprecated }; }