mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-13 14:44:59 +00:00
9 lines
148 B
Ruby
9 lines
148 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Import
|
|
class GithubOrgEntity < Grape::Entity
|
|
expose :login, as: :name
|
|
expose :description
|
|
end
|
|
end
|