Skip to content

Commit 60709c5

Browse files
morgang-adapptAntoineReliefajithkumaradapptNehaSakariya-Adappt
authored
fix: allow files to be attached to emails (#2764)
AB#107812 --------- Co-authored-by: Antoine Hurard <50317271+AntoineRelief@users.noreply.github.com> Co-authored-by: AjithKumar <ajithkumar.p@adappt.ai> Co-authored-by: Antoine Hurard <antoine@reliefapplications.org> Co-authored-by: NehaSakariya-Adappt <119050920+NehaSakariya-Adappt@users.noreply.github.com>
1 parent f066964 commit 60709c5

37 files changed

+663
-86
lines changed

apps/back-office/src/environments/environment.azure.dev.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,5 @@ export const environment: Environment = {
5959
},
6060
admin0Url: 'https://hems-dev.who.int/app-builder/admin0.json',
6161
csApiUrl: 'https://hems-dev.who.int/csapi/api',
62+
csDocUrl: 'https://hems-dev.who.int/csdocui',
6263
};

apps/back-office/src/environments/environment.azure.prod.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ export const environment: Environment = {
5454
},
5555
admin0Url: 'https://hems.who.int/app-builder/admin0.json',
5656
csApiUrl: 'https://hems.who.int/csapi/api',
57+
csDocUrl: 'https://hems.who.int/csdocui',
5758
};

apps/back-office/src/environments/environment.azure.uat.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,5 @@ export const environment: Environment = {
5454
},
5555
admin0Url: 'https://hems-test.who.int/app-builder/admin0.json',
5656
csApiUrl: 'https://hems-test.who.int/csapi/api',
57+
csDocUrl: 'https://hems-test.who.int/csdocui',
5758
};

apps/back-office/src/environments/environment.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,5 @@ export const environment: Environment = {
4848
],
4949
admin0Url: 'https://hems-dev.who.int/app-builder/admin0.json',
5050
csApiUrl: 'https://hems-dev.who.int/csapi/api',
51+
csDocUrl: 'https://hems-dev.who.int/csdocui',
5152
};

apps/back-office/src/environments/environment.type.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,5 @@ export interface Environment {
2929
user?: UserConfiguration;
3030
admin0Url?: string;
3131
csApiUrl?: string;
32+
csDocUrl?: string;
3233
}

apps/front-office/src/environments/environment.azure.dev.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ export const environment: Environment = {
4040
},
4141
admin0Url: 'https://hems-dev.who.int/app-builder/admin0.json',
4242
csApiUrl: 'https://hems-dev.who.int/csapi/api',
43+
csDocUrl: 'https://hems-dev.who.int/csdocui',
4344
};

apps/front-office/src/environments/environment.azure.prod.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ export const environment: Environment = {
3535
},
3636
admin0Url: 'https://hems.who.int/app-builder/admin0.json',
3737
csApiUrl: 'https://hems.who.int/csapi/api',
38+
csDocUrl: 'https://hems.who.int/csdocui',
3839
};

apps/front-office/src/environments/environment.azure.uat.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ export const environment: Environment = {
3535
},
3636
admin0Url: 'https://hems-test.who.int/app-builder/admin0.json',
3737
csApiUrl: 'https://hems-test.who.int/csapi/api',
38+
csDocUrl: 'https://hems-test.who.int/csdocui',
3839
};

apps/front-office/src/environments/environment.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ export const environment: Environment = {
2626
authConfig,
2727
theme,
2828
admin0Url: 'https://hems-dev.who.int/app-builder/admin0.json',
29+
csDocUrl: 'https://hems-dev.who.int/csdocui',
2930
};

apps/front-office/src/environments/environment.type.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ export interface Environment {
2828
user?: UserConfiguration;
2929
admin0Url?: string;
3030
csApiUrl?: string;
31+
csDocUrl?: string;
3132
}

0 commit comments

Comments
 (0)