Merge branch 'feature/devise_email_async' of /home/git/repositories/gitlab/gitlabhq
This commit is contained in:
commit
f89a74718a
4 changed files with 7 additions and 2 deletions
1
Gemfile
1
Gemfile
|
@ -16,6 +16,7 @@ gem "pg", group: :postgres
|
|||
|
||||
# Auth
|
||||
gem "devise", '~> 2.2'
|
||||
gem "devise-async"
|
||||
gem 'omniauth', "~> 1.1.3"
|
||||
gem 'omniauth-google-oauth2'
|
||||
gem 'omniauth-twitter'
|
||||
|
|
|
@ -106,6 +106,8 @@ GEM
|
|||
orm_adapter (~> 0.1)
|
||||
railties (~> 3.1)
|
||||
warden (~> 1.2.1)
|
||||
devise-async (0.8.0)
|
||||
devise (>= 2.2, < 3.2)
|
||||
diff-lcs (1.2.4)
|
||||
dotenv (0.8.0)
|
||||
email_spec (1.4.0)
|
||||
|
@ -564,6 +566,7 @@ DEPENDENCIES
|
|||
d3_rails (~> 3.1.4)
|
||||
database_cleaner
|
||||
devise (~> 2.2)
|
||||
devise-async
|
||||
email_spec
|
||||
enumerize
|
||||
factory_girl_rails
|
||||
|
|
|
@ -42,7 +42,7 @@ require 'carrierwave/orm/activerecord'
|
|||
require 'file_size_validator'
|
||||
|
||||
class User < ActiveRecord::Base
|
||||
devise :database_authenticatable, :token_authenticatable, :lockable,
|
||||
devise :database_authenticatable, :token_authenticatable, :lockable, :async,
|
||||
:recoverable, :rememberable, :trackable, :validatable, :omniauthable, :registerable
|
||||
|
||||
attr_accessible :email, :password, :password_confirmation, :remember_me, :bio, :name, :username,
|
||||
|
@ -398,4 +398,4 @@ class User < ActiveRecord::Base
|
|||
|
||||
self
|
||||
end
|
||||
end
|
||||
end
|
1
config/initializers/devise_async.rb
Normal file
1
config/initializers/devise_async.rb
Normal file
|
@ -0,0 +1 @@
|
|||
Devise::Async.backend = :sidekiq
|
Loading…
Reference in a new issue