get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / GetBootStates.py
index 1afa53b..35537be 100644 (file)
@@ -9,7 +9,7 @@ class GetBootStates(Method):
     Returns an array of all valid node boot states.
     """
 
-    roles = ['admin', 'pi', 'user', 'tech']
+    roles = ['admin', 'pi', 'user', 'tech', 'node']
 
     accepts = [
         Auth()
@@ -17,5 +17,6 @@ class GetBootStates(Method):
 
     returns = [BootState.fields['boot_state']]
 
+
     def call(self, auth):
         return [boot_state['boot_state'] for boot_state in BootStates(self.api)]