diff options
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index bdc9e09..59108da 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -7,5 +7,9 @@ module API class Runner < Grape::Entity expose :id, :token end + + class Project < Grape::Entity + expose :id, :name, :timeout, :scripts, :token, :default_ref, :gitlab_url, :always_build, :polling_interval, :public, :ssh_url_to_repo, :gitlab_id + end end end |