svn keywords
[plcapi.git] / PLC / Methods / GetBootStates.py
index 1c9afc3..2e458bb 100644 (file)
@@ -1,3 +1,5 @@
+# $Id$
+# $URL$
 from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
@@ -9,7 +11,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,8 +19,6 @@ class GetBootStates(Method):
 
     returns = [BootState.fields['boot_state']]
     
-    event_type = 'Get'
-    object_type = 'BootState'
 
     def call(self, auth):
         return [boot_state['boot_state'] for boot_state in BootStates(self.api)]