Commit 00b8969c1a56dc9408cf53c1c0e299f9451f11d4

Authored by Laust Rud Jacobsen
1 parent 262db103
Exists in master and in 1 other branch production

Rubocop: fix ambiguous splat operator

Fixes:
$ rubocop --lint --only AmbiguousOperator
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
app/models/user.rb
... ... @@ -3,7 +3,7 @@ class User
3 3 include Mongoid::Document
4 4 include Mongoid::Timestamps
5 5  
6   - devise *Errbit::Config.devise_modules
  6 + devise(*Errbit::Config.devise_modules)
7 7  
8 8 field :email
9 9 field :github_login
... ...