r2lab is migrating from a previous depl. based on omf_sfa
[plcapi.git] / PLC / Methods / GetRoles.py
index 1a2c196..fb905e5 100644 (file)
@@ -2,20 +2,20 @@ from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.Roles import Role, Roles
-from PLC.Auth import PasswordAuth
+from PLC.Auth import Auth
 
 class GetRoles(Method):
     """
     Get an array of structs containing details about all roles.
     """
 
-    roles = ['admin', 'pi', 'user', 'tech']
+    roles = ['admin', 'pi', 'user', 'tech', 'node']
 
     accepts = [
-        PasswordAuth()
+        Auth()
         ]
 
     returns = [Role.fields]
 
     def call(self, auth):
-        return Roles(self.api).values()
+        return Roles(self.api)