Merge pull request #2993 from coreos-inc/joseph.schorr/QUAY-797/pagination-size

Allow size of pages in V2 api to be configurable
This commit is contained in:
josephschorr 2018-02-02 15:21:15 -05:00 committed by GitHub
commit 9f7b08d0ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View file

@ -383,6 +383,10 @@ CONFIG_SCHEMA = {
'description': 'The types of avatars to display, either generated inline (local) or Gravatar (gravatar)',
'enum': ['local', 'gravatar'],
},
'V2_PAGINATION_SIZE': {
'type': 'number',
'description': 'The number of results returned per page in V2 registry APIs',
},
# Time machine and tag expiration settings.
'FEATURE_CHANGE_TAG_EXPIRATION': {