mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-22 23:03:00 +08:00
12 lines
236 B
Ruby
12 lines
236 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LabelPrinterSerializer < ActiveModel::Serializer
|
|
include Rails.application.routes.url_helpers
|
|
|
|
attributes :name, :description, :type_of, :language_type, :status
|
|
|
|
def urls
|
|
{
|
|
}
|
|
end
|
|
end
|