debian-mirror-gitlab/lib/api/entities/projects/topic.rb
2021-12-11 22:18:48 +05:30

18 lines
351 B
Ruby

# frozen_string_literal: true
module API
module Entities
module Projects
class Topic < Grape::Entity
expose :id
expose :name
expose :description
expose :total_projects_count
expose :avatar_url do |topic, options|
topic.avatar_url(only_path: false)
end
end
end
end
end