fixes transcoding issue for nodes - local nodes were transcoded to None
[plcapi.git] / PLC / Methods / GetBootStates.py
index 71e2cd4..4cd31be 100644 (file)
@@ -6,16 +6,17 @@ from PLC.Auth import Auth
 
 class GetBootStates(Method):
     """
-    Returns a list of all valid node boot states.
+    Returns an array of all valid node boot states.
     """
 
-    roles = ['admin', 'pi', 'user', 'tech']
+    roles = ['admin', 'pi', 'user', 'tech', 'node']
 
     accepts = [
         Auth()
         ]
 
     returns = [BootState.fields['boot_state']]
+    
 
     def call(self, auth):
-        return [boot_state['boot_state'] for boot_state in BootStates(self.api).values()]
+        return [boot_state['boot_state'] for boot_state in BootStates(self.api)]