remove external settings (#1413)

This commit is contained in:
Denys Vuika
2020-04-15 12:33:54 +01:00
committed by GitHub
parent ea6c654e63
commit 6e33766fc4
3 changed files with 1 additions and 41 deletions

View File

@@ -546,12 +546,3 @@ export function canShowLanguagePicker(context: AcaRuleContext): boolean {
export function canShowLogout(context: AcaRuleContext): boolean {
return !context.withCredentials;
}
/**
* Checks if application should render process services extension.
* JSON ref: `canShowProcessServices`
* @param context Rule execution context
*/
export function canShowProcessServices(context: AcaRuleContext): boolean {
return localStorage && localStorage.getItem('processServices') === 'true';
}