mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
12 lines
293 B
Ruby
12 lines
293 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UserWordpressSerializer < BasicUserSerializer
|
|
def avatar_template
|
|
if Hash === object
|
|
UrlHelper.absolute User.avatar_template(user[:username], user[:uploaded_avatar_id])
|
|
else
|
|
UrlHelper.absolute object.avatar_template
|
|
end
|
|
end
|
|
end
|