discourse/app/serializers/directory_column_serializer.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
216 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class DirectoryColumnSerializer < ApplicationSerializer
attributes :id, :name, :type, :position, :icon, :user_field_id
def name
object.name || object.user_field.name
end
end