This commit was manufactured by cvs2svn to create branch
[plcapi.git] / PLC / Methods / AdmGetSitePersons.py
index 220373f..8122528 100644 (file)
@@ -2,32 +2,36 @@ from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Sites import Site, Sites
-from PLC.Auth import PasswordAuth
+from PLC.Auth import Auth
 
 class AdmGetSitePersons(Method):
     """
+    Deprecated. See GetSites.
+
     Return a list of person_ids for the site specified.
 
     PIs may only retrieve the person_ids of accounts at their
     site. Admins may retrieve the person_ids of accounts at any site.
     """
 
+    status = "deprecated"
+
     roles = ['admin', 'pi']
 
     accepts = [
-        PasswordAuth(),
+        Auth(),
         Mixed(Site.fields['site_id'],
               Site.fields['login_base'])
         ]
 
-    returns = Site.all_fields['person_ids']
+    returns = Site.fields['person_ids']
 
     def call(self, auth, site_id_or_login_base):
         # Authenticated function
         assert self.caller is not None
 
         # Get site information
-       sites = Sites(self.api, [site_id_or_login_base], ['person_ids']).values()
+       sites = Sites(self.api, [site_id_or_login_base])
        if not sites:
             raise PLCInvalidArgument, "No such site"