diff options
author | George Tsiolis <tsiolis.g@gmail.com> | 2018-01-02 15:07:13 +0200 |
---|---|---|
committer | George Tsiolis <tsiolis.g@gmail.com> | 2018-01-03 20:23:58 +0200 |
commit | 540a2b67098782842cfdd98b4177a29ac3c81ebf (patch) | |
tree | 781facb3c40102cbae6ae3b2806cf4056205183a /spec/features/u2f_spec.rb | |
parent | ff077cf7dc5cfd7c6c6206d801ea3f326f7af1aa (diff) | |
download | gitlab-ce-540a2b67098782842cfdd98b4177a29ac3c81ebf.tar.gz |
Move 2FA disable button
- Removed disable button from /profile/account
- Added disable button to /profile/two_factor_auth
- Changed 2FA breadcrumb from 'User Settings > Account > Account' to 'User Settings > Account > Two-Factor Authentication'
Diffstat (limited to 'spec/features/u2f_spec.rb')
-rw-r--r-- | spec/features/u2f_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/u2f_spec.rb b/spec/features/u2f_spec.rb index c9afef2a8de..50ee1656e10 100644 --- a/spec/features/u2f_spec.rb +++ b/spec/features/u2f_spec.rb @@ -264,7 +264,7 @@ feature 'Using U2F (Universal 2nd Factor) Devices for Authentication', :js do end it "deletes u2f registrations" do - visit profile_account_path + visit profile_two_factor_auth_path expect do accept_confirm { click_on "Disable" } end.to change { U2fRegistration.count }.by(-1) |