mirror of
https://github.com/discourse/discourse.git
synced 2026-07-31 08:38:27 -05: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
|