mirror of
https://github.com/discourse/discourse.git
synced 2025-02-22 04:07:27 +00:00
10 lines
190 B
Ruby
10 lines
190 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class FoundUserSerializer < ApplicationSerializer
|
||
|
attributes :username, :name, :avatar_template
|
||
|
|
||
|
def include_name?
|
||
|
SiteSetting.enable_names?
|
||
|
end
|
||
|
end
|