Merge pull request #3247 from jzelinskie/fix

endpoints/api: fix docs on dates for logs API
This commit is contained in:
Jimmy Zelinskie 2018-09-12 13:09:41 -04:00 committed by GitHub
commit 867e809ddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,8 +78,8 @@ class RepositoryLogs(RepositoryParamResource):
@require_repo_admin @require_repo_admin
@nickname('listRepoLogs') @nickname('listRepoLogs')
@parse_args() @parse_args()
@query_param('starttime', 'Earliest time from which to get logs (%m/%d/%Y %Z)', type=str) @query_param('starttime', 'Earliest time from which to get logs. The time should be formatted "%m/%d/%Y" in UTC.', type=str)
@query_param('endtime', 'Latest time to which to get logs (%m/%d/%Y %Z)', type=str) @query_param('endtime', 'Latest time to which to get logs. The time should be formatted "%m/%d/%Y" in UTC.', type=str)
@page_support() @page_support()
def get(self, namespace, repository, page_token, parsed_args): def get(self, namespace, repository, page_token, parsed_args):
""" List the logs for the specified repository. """ """ List the logs for the specified repository. """