- pull bulk of functionality into get_slivers() utility function so that
[plcapi.git] / PLC / Methods / GetRoles.py
index a53d775..0456662 100644 (file)
@@ -9,13 +9,13 @@ 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 = [
         Auth()
         ]
 
     returns = [Role.fields]
-
+    
     def call(self, auth):
        return Roles(self.api)