Pman.Dialog.BAdminPassword.bjs
authorEdward <edward@roojs.com>
Fri, 7 Dec 2018 03:58:54 +0000 (11:58 +0800)
committerEdward <edward@roojs.com>
Fri, 7 Dec 2018 03:58:54 +0000 (11:58 +0800)
Pman.Dialog.BAdminPassword.js

Pman.Dialog.BAdminPassword.bjs
Pman.Dialog.BAdminPassword.js

index 5c31670..ee4d248 100644 (file)
             {
              "listeners" : {
               "check" : "function (_self, checked)\n{\n    if(checked) {\n        this.setBoxLabel('Untick to disable Two Factor authentication');\n        return;\n    }\n    \n    this.setBoxLabel('Enable Two Factor Authentication');\n}",
-              "click" : "function (_self, e)\n{\n    if(!Pman.Login.authUser) {\n        Roo.bootstrap.MessageBox.alert('Error', 'Please login again');\n        return;\n    }\n    \n    e.preventDefault();\n    \n    if(!this.checked) {\n        Pman.Dialog.BAdminStaffTwoFactorQRCode.show(\n            {id: Pman.Login.authUser.id},\n            function(valid){\n                if(valid) {\n                    _this.dialog.hide({});\n                    return;\n                }\n                \n                _this.form.findField('_enable_oath_key').setChecked(false,false);\n            }\n        );\n        return;\n    }\n    \n    new Pman.Request({\n        url : baseURL + '/Roo/Core_person',\n        method :'GET',\n        params : {\n            oath_key_disable: 1,\n            id: Pman.Login.authUser.id\n        },\n        \n        success : function(res)\n        {\n            switch(res.data) {\n                case 'DONE':\n                    Roo.bootstrap.MessageBox.alert('Success', 'The two factor authentication has been disabled');\n                    break;\n                default:\n                    Roo.log('invalid usage');\n                    break;\n            }\n        },\n        \n        failure : function(res)\n        {\n            Roo.bootstrap.MessageBox.alert('Error', res);\n        }\n    });\n}"
+              "click" : "function (_self, e)\n{\n    if(!Pman.Login.authUser) {\n        Roo.bootstrap.MessageBox.alert('Error', 'Please login again');\n        return;\n    }\n    \n    e.preventDefault();\n    \n    if(!this.checked) {\n        Pman.Dialog.BAdminStaffTwoFactorQRCode.show({\n            id: Pman.Login.authUser.id,\n            allow_close: false,\n            allow_cancel : true\n        }, function(valid){\n                if(valid) {\n                    _this.dialog.hide({});\n                    return;\n                }\n                \n                _this.form.findField('_enable_oath_key').setChecked(false,false);\n            }\n        );\n        return;\n    }\n    \n    new Pman.Request({\n        url : baseURL + '/Roo/Core_person',\n        method :'GET',\n        params : {\n            oath_key_disable: 1,\n            id: Pman.Login.authUser.id\n        },\n        \n        success : function(res)\n        {\n            switch(res.data) {\n                case 'DONE':\n                    Roo.bootstrap.MessageBox.alert('Success', 'The two factor authentication has been disabled');\n                    break;\n                default:\n                    Roo.log('invalid usage');\n                    break;\n            }\n        },\n        \n        failure : function(res)\n        {\n            Roo.bootstrap.MessageBox.alert('Error', res);\n        }\n    });\n}"
              },
              "String name" : "_enable_oath_key",
              "Boolean checked" : false,
index ec9a14f..2d099ce 100644 (file)
@@ -277,9 +277,11 @@ Roo.apply(Pman.Dialog.BAdminPassword.prototype, {
                     e.preventDefault();
                     
                     if(!this.checked) {
-                        Pman.Dialog.BAdminStaffTwoFactorQRCode.show(
-                            {id: Pman.Login.authUser.id},
-                            function(valid){
+                        Pman.Dialog.BAdminStaffTwoFactorQRCode.show({
+                            id: Pman.Login.authUser.id,
+                            allow_close: false,
+                            allow_cancel : true
+                        }, function(valid){
                                 if(valid) {
                                     _this.dialog.hide({});
                                     return;