scinote-web/app/models/settings.rb
2019-06-10 12:24:04 +02:00

9 lines
142 B
Ruby

# frozen_string_literal: true
class Settings < ApplicationRecord
def self.instance
@instance ||= first
@instance ||= new
end
end