mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
13 lines
300 B
Ruby
13 lines
300 B
Ruby
# Copyright (C) 2012-2013 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
module Auth::Developer
|
|
def self.check( username, password, config, user )
|
|
|
|
# development systems
|
|
if Setting.get('developer_mode') == true
|
|
return user if password == 'test'
|
|
end
|
|
|
|
return false
|
|
end
|
|
end
|