mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-11 07:34:41 +08:00
8 lines
204 B
Ruby
8 lines
204 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserGroupSerializer < ActiveModel::Serializer
|
|
include Canaid::Helpers::PermissionsHelper
|
|
include Rails.application.routes.url_helpers
|
|
|
|
attributes :id, :name
|
|
end
|