Files
mozo-backend/app/services/null_model.rb
T

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