Commit 66bc758e authored by Robert Speicher's avatar Robert Speicher

Update User model for two-factor auth

parent 6fa29429
...@@ -73,8 +73,11 @@ class User < ActiveRecord::Base ...@@ -73,8 +73,11 @@ class User < ActiveRecord::Base
default_value_for :hide_no_password, false default_value_for :hide_no_password, false
default_value_for :theme_id, gitlab_config.default_theme default_value_for :theme_id, gitlab_config.default_theme
devise :lockable, :async, devise :two_factor_authenticatable,
:recoverable, :rememberable, :trackable, :validatable, :omniauthable, :confirmable, :registerable otp_secret_encryption_key: File.read(Rails.root.join('.secret')).chomp
devise :two_factor_backupable
devise :lockable, :async, :recoverable, :rememberable, :trackable,
:validatable, :omniauthable, :confirmable, :registerable
attr_accessor :force_random_password attr_accessor :force_random_password
...@@ -663,4 +666,9 @@ class User < ActiveRecord::Base ...@@ -663,4 +666,9 @@ class User < ActiveRecord::Base
true true
end end
# Used to populate the hidden form field during Two-factor authentication
def login
username || email
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment