scinote-web/app/models/settings.rb
2017-06-23 15:19:08 +02:00

7 lines
111 B
Ruby

class Settings < ApplicationRecord
def self.instance
@instance ||= first
@instance ||= new
end
end