All checks were successful
continuous-integration/drone/push Build is passing
Move the various sections to their own concerns, so they're easier to find and maintain
10 lines
184 B
Ruby
10 lines
184 B
Ruby
module Settings
|
|
module OpenCollectiveSettings
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
field :opencollective_enabled, type: :boolean, default: true
|
|
end
|
|
end
|
|
end
|