partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

LogoutAction.js (360B)


      1 Ext.define("PartKeepr.Actions.LogoutAction", {
      2     extend: "PartKeepr.Actions.BaseAction",
      3 
      4     execute: function ()
      5     {
      6         PartKeepr.getApplication().getLoginManager().logout();
      7     },
      8     statics: {
      9         iconCls: 'web-icon disconnect',
     10         title: i18n('Disconnect'),
     11         closable: true,
     12         menuPath: [{text: i18n("System")}]
     13     }
     14 });