scinote-web/app/serializers/table_serializer.rb
2022-06-07 12:10:10 +02:00

30 lines
607 B
Ruby

# frozen_string_literal: true
class TableSerializer < ActiveModel::Serializer
include Canaid::Helpers::PermissionsHelper
include Rails.application.routes.url_helpers
attributes :name, :contents, :urls, :icon
def contents
object.contents_utf_8
end
def icon
'fa-table'
end
def urls
return if object.destroyed?
object.reload unless object.step
return {} unless can_manage_step?(scope[:user] || @instance_options[:user], object.step)
{
delete_url: step_table_path(object.step, object),
update_url: step_table_path(object.step, object)
}
end
end