mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-10 14:46:42 +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
|