Skip to content
Snippets Groups Projects
Commit e4d4cfc0 authored by Lennard Strohmeyer's avatar Lennard Strohmeyer :penguin:
Browse files

#116 implemented feature flag for data disclosure

parent f7487c9f
No related branches found
No related tags found
No related merge requests found
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
<span i18n="Profile | Header profile dropdown entry @@profileProfileDropDown" <span i18n="Profile | Header profile dropdown entry @@profileProfileDropDown"
>Profile</span> >Profile</span>
</li> </li>
<li nz-menu-item routerLink="/data-disclosure" *ngIf="!loggedIn?.isProvider"> <li nz-menu-item routerLink="/data-disclosure" *ngIf="environment.pageVisibility.data_disclosure && !loggedIn?.isProvider">
<fa-icon [icon]="faDownload"></fa-icon> <fa-icon [icon]="faDownload"></fa-icon>
<span <span
i18n=" i18n="
......
...@@ -5,6 +5,7 @@ export const environment = { ...@@ -5,6 +5,7 @@ export const environment = {
analyses: true, analyses: true,
consent_history: true, consent_history: true,
consent_management: true, consent_management: true,
merge_data: true merge_data: true,
data_disclosure: true,
} }
}; };
...@@ -9,7 +9,8 @@ export const environment = { ...@@ -9,7 +9,8 @@ export const environment = {
analyses: true, analyses: true,
consent_history: true, consent_history: true,
consent_management: true, consent_management: true,
merge_data: true merge_data: true,
data_disclosure: true,
} }
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment