Skip to content
Snippets Groups Projects
Commit 26c69c5d authored by winniehell's avatar winniehell
Browse files

Display error code for U2F errors (!7305)

parent 50f3fd49
No related branches found
No related tags found
1 merge request!7305Display error code for U2F errors
Loading
Loading
@@ -85,7 +85,8 @@
 
U2FAuthenticate.prototype.renderError = function(error) {
this.renderTemplate('error', {
error_message: error.message()
error_message: error.message(),
error_code: error.errorCode
});
return this.container.find('#js-u2f-try-again').on('click', this.renderSetup);
};
Loading
Loading
Loading
Loading
@@ -7,7 +7,6 @@
this.errorCode = errorCode;
this.message = bind(this.message, this);
this.httpsDisabled = window.location.protocol !== 'https:';
console.error("U2F Error Code: " + this.errorCode);
}
 
U2FError.prototype.message = function() {
Loading
Loading
Loading
Loading
@@ -72,7 +72,8 @@
 
U2FRegister.prototype.renderError = function(error) {
this.renderTemplate('error', {
error_message: error.message()
error_message: error.message(),
error_code: error.errorCode
});
return this.container.find('#js-u2f-try-again').on('click', this.renderSetup);
};
Loading
Loading
Loading
Loading
@@ -13,7 +13,7 @@
 
%script#js-authenticate-u2f-error{ type: "text/template" }
%div
%p <%= error_message %>
%p <%= error_message %> (error code: <%= error_code %>)
%a.btn.btn-warning#js-u2f-try-again Try again?
 
%script#js-authenticate-u2f-authenticated{ type: "text/template" }
Loading
Loading
Loading
Loading
@@ -23,7 +23,7 @@
%script#js-register-u2f-error{ type: "text/template" }
%div
%p
%span <%= error_message %>
%span <%= error_message %> (error code: <%= error_code %>)
%a.btn.btn-warning#js-u2f-try-again Try again?
 
%script#js-register-u2f-registered{ type: "text/template" }
Loading
Loading
---
title: Display error code for U2F errors
merge_request: 7305
author: winniehell
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment