summaryrefslogtreecommitdiff
path: root/lib/api/entities/basic_group_details.rb
blob: 882fce4ef2c235553b81a6849f6fcf52fac7b19b (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module API
  module Entities
    class BasicGroupDetails < Grape::Entity
      expose :id
      expose :web_url
      expose :name
    end
  end
end