diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2018-07-16 21:33:49 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2018-07-16 21:33:49 +0100 |
commit | cf9a0f2891e81b5142665c75ee9fd15ff7e55e69 (patch) | |
tree | b1561d68e58de07098817e615fdd706015bbc476 /lib/api/projects.rb | |
parent | cd1b20ae93738b61f0aa074460e2b62b03c1e938 (diff) | |
parent | 7f0431dd8550ac9d229d1383c03386c1634d015f (diff) | |
download | gitlab-ce-cf9a0f2891e81b5142665c75ee9fd15ff7e55e69.tar.gz |
[ci skip] Merge branch 'master' into 45318-FE-junit-tests
* master: (49 commits)
Add changelog entry
Fix `transform` typo
Fix archived parameter for projects API
Enable frozen string in apps/uploaders/*.rb
Fix invalid link to GitLab.com architecture.md
i18n: externalize strings from 'app/views/import'
Remove Repository#lookup and unreachable rugged code
refactor code based on feedback
Trigger rails5 tests either by variable or ref name
Fix link in help doc which was linking to old mono-repo, now in its own repo
SubmoduleHelper - Project is not always available as an instance variable
Allow Danger step to fail
update webpack to v4.16
Backport logger changes from EE
Add the CI Job trigger as the build trigger
Remove flaky and redundant expectations
use fileuploader dynamic path method in uploads manager and add spec
fix typo in uploads manager
add small comment to download method in uploads manager
refactor uploads manager
...
Diffstat (limited to 'lib/api/projects.rb')
-rw-r--r-- | lib/api/projects.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb index 8273abe48c9..0888e3befac 100644 --- a/lib/api/projects.rb +++ b/lib/api/projects.rb @@ -30,7 +30,7 @@ module API end params :filter_params do - optional :archived, type: Boolean, default: false, desc: 'Limit by archived status' + optional :archived, type: Boolean, desc: 'Limit by archived status' optional :visibility, type: String, values: Gitlab::VisibilityLevel.string_values, desc: 'Limit by visibility' optional :search, type: String, desc: 'Return list of projects matching the search criteria' |