Example #1
0
 def get_share_out_repo_list(self, username, start, limit):
     """
     Get repo list shared by this user.
     Return: a list of Repo objects
     """
     return seafserv_threaded_rpc.list_share_repos(username, "from_email",
                                                   start, limit)
Example #2
0
 def get_share_out_repo_list(self, username, start, limit):
     """
     Get repo list shared by this user.
     Return: a list of Repo objects
     """
     return seafserv_threaded_rpc.list_share_repos(username, "from_email",
                                                   start, limit)
Example #3
0
 def get_share_in_repo_list(self, username, start, limit):
     return seafserv_threaded_rpc.list_share_repos(username, "to_email",
                                                   start, limit)
Example #4
0
 def get_share_in_repo_list(self, username, start, limit):
     """
     Get repo list shared to this user.
     """
     return seafserv_threaded_rpc.list_share_repos(username, "to_email",
                                                   start, limit)
Example #5
0
 def get_share_in_repo_list(self, username, start, limit):
     return seafserv_threaded_rpc.list_share_repos(username, "to_email",
                                                   start, limit)
Example #6
0
 def get_share_in_repo_list(self, username, start, limit):
     """
     Get repo list shared to this user.
     """
     return seafserv_threaded_rpc.list_share_repos(username, "to_email",
                                                   start, limit)