From 7517869e1f4f6d9f683b4aa5a690420b4f54c5df Mon Sep 17 00:00:00 2001 From: Frederik Pytlick Date: Fri, 13 Oct 2023 14:32:16 +0200 Subject: [PATCH] #28 - Format --- src/plugins/config.ts | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/src/plugins/config.ts b/src/plugins/config.ts index 36f475e..dd198e5 100644 --- a/src/plugins/config.ts +++ b/src/plugins/config.ts @@ -23,10 +23,10 @@ declare module 'fastify' { REDIS_URL: string; NODE_ENV: NODE_ENV; ALLOWED_ORIGINS: string[]; - PUSHER_APP_ID: string; - PUSHER_APP_KEY: string; - PUSHER_APP_SECRET: string; - PUSHER_APP_CLUSTER: string; + PUSHER_APP_ID: string; + PUSHER_APP_KEY: string; + PUSHER_APP_SECRET: string; + PUSHER_APP_CLUSTER: string; }; } } @@ -47,10 +47,10 @@ export default fastifyPlugin( 'DATABASE_URL_NON_POOLING', 'REDIS_URL', 'BLOB_READ_WRITE_TOKEN', - 'PUSHER_APP_ID', - 'PUSHER_APP_KEY', - 'PUSHER_APP_SECRET', - 'PUSHER_APP_CLUSTER', + 'PUSHER_APP_ID', + 'PUSHER_APP_KEY', + 'PUSHER_APP_SECRET', + 'PUSHER_APP_CLUSTER', ], properties: { SECRET: { @@ -91,18 +91,18 @@ export default fastifyPlugin( separator: ',', default: 'http://localhost:4321', }, - PUSHER_APP_ID: { - type: 'string', - }, - PUSHER_APP_KEY: { - type: 'string', - }, - PUSHER_APP_SECRET: { - type: 'string', - }, - PUSHER_APP_CLUSTER: { - type: 'string', - }, + PUSHER_APP_ID: { + type: 'string', + }, + PUSHER_APP_KEY: { + type: 'string', + }, + PUSHER_APP_SECRET: { + type: 'string', + }, + PUSHER_APP_CLUSTER: { + type: 'string', + }, }, };