scinote-web/app/models/settings.rb

9 lines
142 B
Ruby
Raw Normal View History

2019-05-09 23:10:02 +08:00
# frozen_string_literal: true
2017-06-23 21:19:08 +08:00
class Settings < ApplicationRecord
def self.instance
@instance ||= first
@instance ||= new
end
end