Skip to content

Commit 9fa402f

Browse files
committed
add SENDER_NAME environment and types
1 parent 1111729 commit 9fa402f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

dashboard/src/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export const TextInputType = {
1919
SMTP_USERNAME: 'SMTP_USERNAME',
2020
SMTP_LOCAL_NAME: 'SMTP_LOCAL_NAME',
2121
SENDER_EMAIL: 'SENDER_EMAIL',
22+
SENDER_NAME: 'SENDER_NAME',
2223
ORGANIZATION_NAME: 'ORGANIZATION_NAME',
2324
ORGANIZATION_LOGO: 'ORGANIZATION_LOGO',
2425
DATABASE_NAME: 'DATABASE_NAME',
@@ -143,6 +144,7 @@ export interface envVarTypes {
143144
SMTP_PASSWORD: string;
144145
SMTP_LOCAL_NAME: string;
145146
SENDER_EMAIL: string;
147+
SENDER_NAME: string;
146148
ALLOWED_ORIGINS: [string] | [];
147149
ORGANIZATION_NAME: string;
148150
ORGANIZATION_LOGO: string;

dashboard/src/pages/Environment.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ const Environment = () => {
7070
SMTP_PASSWORD: '',
7171
SMTP_LOCAL_NAME: '',
7272
SENDER_EMAIL: '',
73+
SENDER_NAME: '',
7374
ALLOWED_ORIGINS: [],
7475
ORGANIZATION_NAME: '',
7576
ORGANIZATION_LOGO: '',

0 commit comments

Comments
 (0)