mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
13 lines
388 B
Ruby
13 lines
388 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class SetGitLabSSLDefault < ActiveRecord::Migration[6.1]
|
|
def change
|
|
# return if it's a new setup
|
|
return if !Setting.exists?(name: 'system_init_done')
|
|
|
|
config = Setting.get('gitlab_config')
|
|
return if config.blank?
|
|
|
|
Setting.set('gitlab_config', config.merge('verify_ssl' => true))
|
|
end
|
|
end
|