mirror of
https://github.com/GSA/notifications-api.git
synced 2026-08-24 16:23:44 -04:00
increase page size for API calls to 250
This commit is contained in:
@@ -175,7 +175,7 @@ def get_all_notifications():
|
||||
data = notifications_filter_schema.load(request.args).data
|
||||
include_jobs = data.get('include_jobs', False)
|
||||
page = data.get('page', 1)
|
||||
page_size = data.get('page_size', current_app.config.get('PAGE_SIZE'))
|
||||
page_size = data.get('page_size', current_app.config.get('API_PAGE_SIZE'))
|
||||
limit_days = data.get('limit_days')
|
||||
|
||||
pagination = notifications_dao.get_notifications_for_service(
|
||||
|
||||
Reference in New Issue
Block a user