2013-02-05 14:16:51 -05:00
|
|
|
class BasicUserSerializer < ApplicationSerializer
|
2016-12-05 05:46:23 -05:00
|
|
|
attributes :id, :username, :avatar_template
|
2013-12-08 09:01:25 -05:00
|
|
|
|
2014-05-22 03:37:02 -04:00
|
|
|
def avatar_template
|
|
|
|
if Hash === object
|
|
|
|
User.avatar_template(user[:username], user[:uploaded_avatar_id])
|
|
|
|
else
|
2017-09-08 01:07:22 -04:00
|
|
|
user&.avatar_template
|
2014-05-22 03:37:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def user
|
|
|
|
object[:user] || object
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|