about summary refs log tree commit diff
path: root/app/lib/settings/extend.rb
blob: 7241a1221c43312ae2ac454b6e1cb1787fb4ad3a (plain) (blame)
1
2
3
4
5
6
7
8
9
module Settings
  module Extend
  	extend ActiveSupport::Concern

    def settings
      ScopedSettings.for_thing(self)
    end
  end
end