7d4da81272
* install rubocop * 1961 automatic rubocop fixes * update rubocop.yml to ignore half of the remaining cops * rubocop lint warnings * random other warnings fixed
15 lines
255 B
Ruby
15 lines
255 B
Ruby
class NewUserSerializer < ActiveModel::Serializer
|
|
attributes :id,
|
|
:name,
|
|
:avatar,
|
|
:is_admin,
|
|
:generation
|
|
|
|
def avatar
|
|
object.image.url(:sixtyfour)
|
|
end
|
|
|
|
def is_admin
|
|
object.admin
|
|
end
|
|
end
|