diff options
author | Petr VobornÃk <pvoborni@redhat.com> | 2012-02-24 15:31:55 +0100 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2012-02-28 23:58:51 -0500 |
commit | 87901ed7098dff72e4a62dfe582c2b83439b7280 (patch) | |
tree | 9fcf4354796ac72d68b48ead826f6b3c8db0a818 /install/ui/webui.js | |
parent | a5a55ceff3822ede55ad817ede0da5712fb75651 (diff) | |
download | freeipa.git-87901ed7098dff72e4a62dfe582c2b83439b7280.tar.gz freeipa.git-87901ed7098dff72e4a62dfe582c2b83439b7280.tar.xz freeipa.git-87901ed7098dff72e4a62dfe582c2b83439b7280.zip |
Added logout button
Logout button was added to Web UI.
Click on logout button executes session_logout command. If command succeeds or xhr stutus is 401 (unauthorized - already logged out) page is redirected to logout.html.
logout.html is a simple page with "You have been logged out" text and a link to return back to main page.
https://fedorahosted.org/freeipa/ticket/2363
Diffstat (limited to 'install/ui/webui.js')
-rw-r--r-- | install/ui/webui.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/install/ui/webui.js b/install/ui/webui.js index b8394d28..5d32e797 100644 --- a/install/ui/webui.js +++ b/install/ui/webui.js @@ -170,6 +170,11 @@ $(function() { $('#loggedinas a').fragment( {'user-facet': 'details', 'user-pkey': IPA.whoami_pkey}, 2); + $('#logout').click(function() { + IPA.logout(); + return false; + }).text(IPA.messages.login.logout); + IPA.nav = create_navigation(); IPA.nav.create(); IPA.nav.update(); |