1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 09:21:12 +00:00

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
This commit is contained in:
Toshi MARUYAMA 2019-11-09 09:18:29 +00:00
parent 7edf7a009a
commit e264e05906

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