scinote-web/app/models/settings.rb

7 lines
112 B
Ruby
Raw Normal View History

class Settings < ActiveRecord::Base
def self.instance
@instance ||= first
@instance ||= new
end
end