mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
13 lines
265 B
Ruby
13 lines
265 B
Ruby
class UserWordpressSerializer < BasicUserSerializer
|
|
|
|
include UrlHelper
|
|
|
|
def avatar_template
|
|
if Hash === object
|
|
absolute User.avatar_template(user[:username], user[:uploaded_avatar_id])
|
|
else
|
|
absolute object.avatar_template
|
|
end
|
|
end
|
|
|
|
end
|