mastodon/app/lib/settings/extend.rb

10 lines
143 B
Ruby
Raw Normal View History

2017-01-12 20:24:41 -06:00
# frozen_string_literal: true
module Settings
module Extend
def settings
2017-05-24 22:18:08 -05:00
@settings ||= ScopedSettings.new(self)
end
end
2017-01-12 20:24:41 -06:00
end