Explorar o código

Disable sign out for AuthProxyEnabled

Sign out was disabled for AuthProxyEnabled in #3122.  This is to catch the one other instance of a sign out link in the side menu.
Solar Olugebefola %!s(int64=9) %!d(string=hai) anos
pai
achega
de7edb40f5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      public/app/core/components/sidemenu/sidemenu.ts

+ 1 - 1
public/app/core/components/sidemenu/sidemenu.ts

@@ -50,7 +50,7 @@ export class SideMenuCtrl {
      {text: 'Profile', url: this.getUrl('/profile')},
    ];
 
-   if (this.isSignedIn) {
+   if (this.showSignout) {
      this.orgMenu.push({text: "Sign out", url: this.getUrl("/logout"), target: "_self"});
    }