mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 00:20:20 +08:00
9 lines
216 B
Ruby
9 lines
216 B
Ruby
# 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
|