summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2015-06-19 15:14:37 -0400
committerRobert Speicher <rspeicher@gmail.com>2015-06-19 15:14:37 -0400
commitb6318297fc93ab26108c586af9d34c16fc783589 (patch)
tree6755fcf5565a83fa7612081f902087601b69849c /app/views
parent22dd2240a6ec80955b98667c727326135a2f7f53 (diff)
downloadgitlab-ce-b6318297fc93ab26108c586af9d34c16fc783589.tar.gz
Use User#two_factor_enabled instead of otp_required_for_loginrs-dev-issue-2415
Diffstat (limited to 'app/views')
-rw-r--r--app/views/profiles/accounts/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/profiles/accounts/show.html.haml b/app/views/profiles/accounts/show.html.haml
index ed009c86568..378dfa2dce0 100644
--- a/app/views/profiles/accounts/show.html.haml
+++ b/app/views/profiles/accounts/show.html.haml
@@ -36,7 +36,7 @@
.panel-heading
Two-factor Authentication
.panel-body
- - if current_user.otp_required_for_login
+ - if current_user.two_factor_enabled?
.pull-right
= link_to 'Disable Two-factor Authentication', profile_two_factor_auth_path, method: :delete, class: 'btn btn-close btn-sm',
data: { confirm: 'Are you sure?' }