mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-02 21:20:08 +08:00
6 lines
112 B
Ruby
6 lines
112 B
Ruby
class Settings < ActiveRecord::Base
|
|
def self.instance
|
|
@instance ||= first
|
|
@instance ||= new
|
|
end
|
|
end
|