mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 20:24:43 +08:00
19 lines
649 B
Ruby
19 lines
649 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ChecklistItemSerializer < ActiveModel::Serializer
|
|
include Canaid::Helpers::PermissionsHelper
|
|
include Rails.application.routes.url_helpers
|
|
|
|
attributes :id, :text, :checked, :position, :urls
|
|
|
|
def urls
|
|
return {} if object.destroyed? ||
|
|
!object.persisted? ||
|
|
!can_manage_step?(scope[:user] || @instance_options[:user], object.checklist.step)
|
|
|
|
{
|
|
update_url: step_checklist_checklist_item_path(object.checklist.step, object.checklist, object),
|
|
delete_url: step_checklist_checklist_item_path(object.checklist.step, object.checklist, object)
|
|
}
|
|
end
|
|
end
|