2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2021-03-10 16:11:14 +00:00
|
|
|
class Issue2595GitLabPlaceholder < ActiveRecord::Migration[5.2]
|
2019-09-04 06:38:28 +00:00
|
|
|
def change
|
|
|
|
# return if it's a new setup
|
2020-08-03 08:35:43 +00:00
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
2019-09-04 06:38:28 +00:00
|
|
|
|
|
|
|
setting = Setting.find_by(name: 'auth_gitlab_credentials')
|
|
|
|
setting.options['form'].last['placeholder'] = 'https://gitlab.YOURDOMAIN.com/api/v4/'
|
|
|
|
setting.save!
|
|
|
|
end
|
|
|
|
end
|