2021-01-29 00:20:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class DependencyProxy::GroupSetting < ApplicationRecord
|
|
|
|
belongs_to :group
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
attribute :enabled, default: true
|
2021-01-29 00:20:46 +05:30
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
validates :group, presence: true
|
2021-01-29 00:20:46 +05:30
|
|
|
end
|