2015-01-08 12:53:35 -05:00
|
|
|
module Gitlab
|
|
|
|
module CurrentSettings
|
|
|
|
def current_application_settings
|
2015-01-13 13:58:32 -05:00
|
|
|
if ActiveRecord::Base.connected? && ActiveRecord::Base.connection.table_exists?('application_settings')
|
|
|
|
ApplicationSetting.current ||
|
|
|
|
ApplicationSetting.create_from_defaults
|
|
|
|
else
|
2015-01-08 14:26:16 -05:00
|
|
|
fake_application_settings
|
2015-01-08 13:30:35 -05:00
|
|
|
end
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|
2015-01-08 14:26:16 -05:00
|
|
|
|
|
|
|
def fake_application_settings
|
|
|
|
OpenStruct.new(
|
|
|
|
default_projects_limit: Settings.gitlab['default_projects_limit'],
|
2015-01-25 12:34:02 -05:00
|
|
|
default_branch_protection: Settings.gitlab['default_branch_protection'],
|
2015-01-08 14:26:16 -05:00
|
|
|
signup_enabled: Settings.gitlab['signup_enabled'],
|
|
|
|
signin_enabled: Settings.gitlab['signin_enabled'],
|
|
|
|
gravatar_enabled: Settings.gravatar['enabled'],
|
|
|
|
sign_in_text: Settings.extra['sign_in_text'],
|
|
|
|
)
|
|
|
|
end
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|
|
|
|
end
|