scinote-web/app/serializers/step_text_serializer.rb

16 lines
277 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class StepTextSerializer < ActiveModel::Serializer
include Rails.application.routes.url_helpers
attributes :text, :urls
def urls
2022-05-04 16:25:53 +08:00
return if object.destroyed?
{
delete_url: step_text_path(object.step, object)
}
end
end