def get_owned_repo_list(self, username, ret_corrupted=False, start=-1, limit=-1): """ Return: a list of Repo objects """ return seafserv_threaded_rpc.list_owned_repos(username, 1 if ret_corrupted else 0, start, limit)
def get_owned_repo_list(self, username): return seafserv_threaded_rpc.list_owned_repos(username)
def get_owned_repo_list(self, username, ret_corrupted=False): return seafserv_threaded_rpc.list_owned_repos(username, 1 if ret_corrupted else 0)