2020-02-10 07:08:59 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ProjectSetting < ApplicationRecord
|
2022-02-11 16:12:17 -05:00
|
|
|
include IgnorableColumns
|
|
|
|
|
|
|
|
ignore_column :show_diff_preview_in_email, remove_with: '14.10', remove_after: '2022-03-22'
|
|
|
|
|
2020-02-10 07:08:59 -05:00
|
|
|
belongs_to :project, inverse_of: :project_setting
|
|
|
|
|
2020-06-30 14:09:13 -04:00
|
|
|
enum squash_option: {
|
|
|
|
never: 0,
|
|
|
|
always: 1,
|
|
|
|
default_on: 2,
|
|
|
|
default_off: 3
|
|
|
|
}, _prefix: 'squash'
|
|
|
|
|
2020-02-10 07:08:59 -05:00
|
|
|
self.primary_key = :project_id
|
2020-06-30 14:09:13 -04:00
|
|
|
|
2022-02-12 16:16:25 -05:00
|
|
|
validates :merge_commit_template, length: { maximum: Project::MAX_COMMIT_TEMPLATE_LENGTH }
|
|
|
|
validates :squash_commit_template, length: { maximum: Project::MAX_COMMIT_TEMPLATE_LENGTH }
|
2021-11-11 04:12:21 -05:00
|
|
|
|
2022-02-14 22:13:45 -05:00
|
|
|
default_value_for(:legacy_open_source_license_available) do
|
|
|
|
Feature.enabled?(:legacy_open_source_license_available, default_enabled: :yaml, type: :ops)
|
|
|
|
end
|
|
|
|
|
2020-06-30 14:09:13 -04:00
|
|
|
def squash_enabled_by_default?
|
|
|
|
%w[always default_on].include?(squash_option)
|
|
|
|
end
|
|
|
|
|
|
|
|
def squash_readonly?
|
|
|
|
%w[always never].include?(squash_option)
|
|
|
|
end
|
2022-01-11 13:16:38 -05:00
|
|
|
|
|
|
|
validate :validates_mr_default_target_self
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def validates_mr_default_target_self
|
|
|
|
if mr_default_target_self_changed? && !project.forked?
|
|
|
|
errors.add :mr_default_target_self, _('This setting is allowed for forked projects only')
|
|
|
|
end
|
|
|
|
end
|
2020-02-10 07:08:59 -05:00
|
|
|
end
|
2020-04-15 14:09:36 -04:00
|
|
|
|
2021-05-11 17:10:21 -04:00
|
|
|
ProjectSetting.prepend_mod
|