# frozen_string_literal: true

class SiteCategorySerializer < BasicCategorySerializer

  attributes :allowed_tags,
             :allowed_tag_groups,
             :allow_global_tags,
             :min_tags_from_required_group,
             :required_tag_group_name,
             :read_only_banner

  def include_allowed_tags?
    SiteSetting.tagging_enabled
  end

  def allowed_tags
    object.tags.pluck(:name)
  end

  def include_allowed_tag_groups?
    SiteSetting.tagging_enabled
  end

  def allowed_tag_groups
    object.tag_groups.pluck(:name)
  end

  def include_allow_global_tags?
    SiteSetting.tagging_enabled
  end

  def required_tag_group_name
    object.required_tag_group&.name
  end

end