mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-25 08:14:17 +08:00
15 lines
283 B
Ruby
15 lines
283 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChecklistSerializer < ActiveModel::Serializer
|
|
include Rails.application.routes.url_helpers
|
|
|
|
attributes :name, :urls
|
|
|
|
def urls
|
|
return if object.destroyed?
|
|
|
|
{
|
|
delete_url: step_checklist_path(object.step, object)
|
|
}
|
|
end
|
|
end
|