mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:29:30 +08: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
|