0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-05 20:29:55 +08:00
discourse/app/serializers/user_wordpress_serializer.rb
2023-01-09 14:14:59 +00:00

11 lines
293 B
Ruby
Vendored

# 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