12 lines
187 B
Ruby
12 lines
187 B
Ruby
|
module Api
|
||
|
module V2
|
||
|
class MetacodeSerializer < ApplicationSerializer
|
||
|
attributes :id,
|
||
|
:name,
|
||
|
:manual_icon,
|
||
|
:color,
|
||
|
:aws_icon
|
||
|
end
|
||
|
end
|
||
|
end
|