Farmbot-Web-App/app/serializers/alert_serializer.rb

8 lines
176 B
Ruby
Raw Permalink Normal View History

2019-04-19 11:56:45 -06:00
class AlertSerializer < ApplicationSerializer
attributes :created_at, :id, :priority, :problem_tag, :updated_at, :slug
2019-04-11 15:03:14 -06:00
def created_at
object.created_at.to_i
end
end