diff options
author | Valery Sizov <valery@gitlab.com> | 2014-11-28 14:06:14 -0500 |
---|---|---|
committer | Valery Sizov <valery@gitlab.com> | 2014-12-01 06:23:38 -0500 |
commit | 7b45b052b292099cf6e519749bf8f241c74c0b70 (patch) | |
tree | 2588fc936746dfcc45a609445a1f4606985647bd /lib/api/entities.rb | |
parent | 98b270ff404edcd840911b2ec3353d8701f6cf93 (diff) | |
download | gitlab-ci-7b45b052b292099cf6e519749bf8f241c74c0b70.tar.gz |
remove script field from project
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r-- | lib/api/entities.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb index 9f4ea7f..0748442 100644 --- a/lib/api/entities.rb +++ b/lib/api/entities.rb @@ -17,7 +17,7 @@ module API 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 + expose :id, :name, :timeout, :token, :default_ref, :gitlab_url, :always_build, :polling_interval, :public, :ssh_url_to_repo, :gitlab_id end class RunnerProject < Grape::Entity |