Browse Source

cleanup: rubocop: fix Layout/AlignArguments in app/models/auth_source.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19001 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Toshi MARUYAMA 4 years ago
parent
commit
e264e05906
1 changed files with 3 additions and 2 deletions
  1. 3
    2
      app/models/auth_source.rb

+ 3
- 2
app/models/auth_source.rb View File

@@ -33,7 +33,8 @@ class AuthSource < ActiveRecord::Base
validates_uniqueness_of :name
validates_length_of :name, :maximum => 60

safe_attributes 'name',
safe_attributes(
'name',
'host',
'port',
'account',
@@ -47,7 +48,7 @@ class AuthSource < ActiveRecord::Base
'tls',
'verify_peer',
'filter',
'timeout'
'timeout')

def authenticate(login, password)
end

Loading…
Cancel
Save