Merge pull request #3247 from jzelinskie/fix
endpoints/api: fix docs on dates for logs API
This commit is contained in:
commit
867e809ddc
1 changed files with 2 additions and 2 deletions
|
@ -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. """
|
||||||
|
|
Reference in a new issue