move doorman url to common context

This commit is contained in:
Martin Dimitrov 2025-06-02 17:28:46 -07:00
parent 9c6231f045
commit f919c3f3e1
3 changed files with 4 additions and 3 deletions

View File

@ -21,3 +21,5 @@ LOKI_USER=doorman
LOKI_PW=doormanlogs LOKI_PW=doormanlogs
NOTIFY_SECRET_KEY=discordnotifyme NOTIFY_SECRET_KEY=discordnotifyme
DOORMAN_URL=https://doorman.chromart.cc

View File

@ -14,4 +14,5 @@ export interface DoormanLambdaContext extends EnvironmentVariables {
LOKI_USER: string; LOKI_USER: string;
LOKI_PW: string; LOKI_PW: string;
NOTIFY_SECRET_KEY: string; NOTIFY_SECRET_KEY: string;
DOORMAN_URL: string;
}; };

View File

@ -1,5 +1,3 @@
import { DoormanLambdaContext } from "../../../doorman-api/src/common/DoormanHandlerContext"; import { DoormanLambdaContext } from "../../../doorman-api/src/common/DoormanHandlerContext";
export interface TwilioContext extends DoormanLambdaContext { export interface TwilioContext extends DoormanLambdaContext {};
DOORMAN_URL: string;
};