diff options
author | DJ Mountney <david@twkie.net> | 2016-08-19 18:51:56 -0700 |
---|---|---|
committer | DJ Mountney <david@twkie.net> | 2016-09-01 17:11:42 -0700 |
commit | 9224f031cfcb8283566f9d1dcc336ae644faf062 (patch) | |
tree | 4c2012f873b24bd30b6fdea0807cae6d3fe43f4e /app/views/u2f | |
parent | 33a367e828c95ba7321d33361be67c68b1603bdd (diff) | |
download | gitlab-ce-9224f031cfcb8283566f9d1dcc336ae644faf062.tar.gz |
Pass the remember_me option into the u2f form and support it while authenticatingadd-remember-option-u2f
Matches the changes done for non-u2f two-factor auth
Diffstat (limited to 'app/views/u2f')
-rw-r--r-- | app/views/u2f/_authenticate.html.haml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/u2f/_authenticate.html.haml b/app/views/u2f/_authenticate.html.haml index 75fb0e303ad..9657101ace5 100644 --- a/app/views/u2f/_authenticate.html.haml +++ b/app/views/u2f/_authenticate.html.haml @@ -20,6 +20,8 @@ %div %p We heard back from your U2F device. Click this button to authenticate with the GitLab server. = form_tag(new_user_session_path, method: :post) do |f| + - resource_params = params[resource_name].presence || params + = hidden_field_tag 'user[remember_me]', resource_params.fetch(:remember_me, 0) = hidden_field_tag 'user[device_response]', nil, class: 'form-control', required: true, id: "js-device-response" = submit_tag "Authenticate via U2F Device", class: "btn btn-success" |