8 lines
169 B
Ruby
8 lines
169 B
Ruby
NullModel = Naught.build do
|
|
include ActiveModel::SerializerSupport
|
|
def created_at
|
|
@created_at ||= Time.current
|
|
end
|
|
alias_method :updated_at, :created_at
|
|
end
|