chinwagsocial/app/lib/settings/extend.rb

10 lines
143 B
Ruby
Raw Permalink Normal View History

2017-01-13 13:24:41 +11:00
# frozen_string_literal: true
module Settings
module Extend
def settings
2017-05-25 13:18:08 +10:00
@settings ||= ScopedSettings.new(self)
end
end
2017-01-13 13:24:41 +11:00
end