1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-17 16:13:50 -05:00

10 lines
143 B
Ruby
Raw Normal View History

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