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
Branches
Tags
No related merge requests found
......@@ -77,7 +77,7 @@
<span i18n="Profile | Header profile dropdown entry @@profileProfileDropDown"
>Profile</span>
</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>
<span
i18n="
......
......@@ -5,6 +5,7 @@ export const environment = {
analyses: true,
consent_history: true,
consent_management: true,
merge_data: true
merge_data: true,
data_disclosure: true,
}
};
......@@ -9,7 +9,8 @@ export const environment = {
analyses: true,
consent_history: 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