2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ProjectSetting < ApplicationRecord
|
2021-10-27 15:23:28 +05:30
|
|
|
include IgnorableColumns
|
|
|
|
|
|
|
|
ignore_column :allow_editing_commit_messages, remove_with: '14.4', remove_after: '2021-09-10'
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
belongs_to :project, inverse_of: :project_setting
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
enum squash_option: {
|
|
|
|
never: 0,
|
|
|
|
always: 1,
|
|
|
|
default_on: 2,
|
|
|
|
default_off: 3
|
|
|
|
}, _prefix: 'squash'
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
self.primary_key = :project_id
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
def squash_enabled_by_default?
|
|
|
|
%w[always default_on].include?(squash_option)
|
|
|
|
end
|
|
|
|
|
|
|
|
def squash_readonly?
|
|
|
|
%w[always never].include?(squash_option)
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
2020-04-22 19:07:51 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
ProjectSetting.prepend_mod
|