You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
333 B
15 lines
333 B
# frozen_string_literal: true |
|
|
|
class ExtendedDescription < ActiveModelSerializers::Model |
|
attributes :updated_at, :text |
|
|
|
def self.current |
|
custom = Setting.find_by(var: 'site_extended_description') |
|
|
|
if custom&.value.present? |
|
new(text: custom.value, updated_at: custom.updated_at) |
|
else |
|
new |
|
end |
|
end |
|
end
|
|
|