[accounts] turn off IAP

This commit is contained in:
Devin Zuczek
2026-08-27 17:18:42 -04:00
parent 0f36db2a7f
commit 299f369925
+1 -1
View File
@@ -403,7 +403,7 @@ const app = new Hono<App>()
async (c) => { async (c) => {
const id = await authedId(c) const id = await authedId(c)
if (id === null) return unauthorized(c) if (id === null) return unauthorized(c)
return c.json({ accountId: id, disallowInAppPurchases: false }) return c.json({ accountId: id, disallowInAppPurchases: true })
} }
) )