svn kwds
[plcapi.git] / PLC / Methods / AuthCheck.py
index 3a697ee..0a4c260 100644 (file)
@@ -1,15 +1,15 @@
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
-from PLC.Auth import PasswordAuth
+from PLC.Auth import Auth, BootAuth
 
 class AuthCheck(Method):
     """
-    Returns 1 if the user authenticated successfully, faults
+    Returns 1 if the user or node authenticated successfully, faults
     otherwise.
     """
 
-    roles = ['admin', 'pi', 'user', 'tech']
-    accepts = [PasswordAuth()]
+    roles = ['admin', 'pi', 'user', 'tech', 'node']
+    accepts = [Auth()]
     returns = Parameter(int, '1 if successful')
 
     def call(self, auth):