mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-23 15:24:57 +08:00
13 lines
236 B
Ruby
13 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
|