mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 14:17:00 +08:00
15 lines
277 B
Ruby
15 lines
277 B
Ruby
# frozen_string_literal: true
|
|
|
|
class StepTextSerializer < ActiveModel::Serializer
|
|
include Rails.application.routes.url_helpers
|
|
|
|
attributes :text, :urls
|
|
|
|
def urls
|
|
return if object.destroyed?
|
|
|
|
{
|
|
delete_url: step_text_path(object.step, object)
|
|
}
|
|
end
|
|
end
|