Replace Entities::RunnerProjectDetails with Entities::ForkedFromProject
This commit is contained in:
parent
f8f492e589
commit
7ea60c8564
2 changed files with 5 additions and 7 deletions
|
@ -122,7 +122,9 @@ Example response:
|
|||
"projects": [
|
||||
{
|
||||
"id": 1,
|
||||
"name": "GitLab Community Edition",
|
||||
"name_with_namespace": "GitLab.org / GitLab Community Edition",
|
||||
"path": "gitlab-ce",
|
||||
"path_with_namespace": "gitlab-org/gitlab-ce"
|
||||
}
|
||||
],
|
||||
|
@ -170,7 +172,9 @@ Example response:
|
|||
"projects": [
|
||||
{
|
||||
"id": 1,
|
||||
"name": "GitLab Community Edition",
|
||||
"name_with_namespace": "GitLab.org / GitLab Community Edition",
|
||||
"path": "gitlab-ce",
|
||||
"path_with_namespace": "gitlab-org/gitlab-ce"
|
||||
}
|
||||
],
|
||||
|
|
|
@ -369,12 +369,6 @@ module API
|
|||
expose :id, :variables
|
||||
end
|
||||
|
||||
class RunnerProjectDetails < Grape::Entity
|
||||
expose :id
|
||||
expose :name_with_namespace
|
||||
expose :path_with_namespace
|
||||
end
|
||||
|
||||
class Runner < Grape::Entity
|
||||
expose :id
|
||||
expose :description
|
||||
|
@ -388,7 +382,7 @@ module API
|
|||
expose :version, :revision, :platform, :architecture
|
||||
expose :contacted_at, as: :last_contact
|
||||
expose :token, if: lambda { |runner, options| options[:current_user].is_admin? || !runner.is_shared? }
|
||||
expose :projects, with: Entities::RunnerProjectDetails do |runner, options|
|
||||
expose :projects, with: Entities::ForkedFromProject do |runner, options|
|
||||
if options[:current_user].is_admin?
|
||||
runner.projects
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue