Add agent workflows & stuff
Build and Push Next App / quality (push) Failing after 48s
Build and Push Next App / build-next (push) Has been skipped

This commit is contained in:
Gabriel Brown
2026-06-21 21:15:15 -05:00
parent cf7ff2ee4e
commit 2dfa97ee4f
102 changed files with 8488 additions and 161 deletions
+15
View File
@@ -0,0 +1,15 @@
import { query } from './_generated/server';
import { getRequiredUserId } from './model';
export const getStatus = query({
args: {},
handler: async (ctx) => {
await getRequiredUserId(ctx);
return {
encryptionConfigured: Boolean(
process.env.SPOON_ENCRYPTION_KEY?.trim() ??
process.env.INSTANCE_SECRET?.trim(),
),
};
},
});