From: Tony Mack Date: Fri, 14 Sep 2012 15:35:48 +0000 (-0400) Subject: removed 'node' role X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=0ff0c9746b23b857622c511d841573f57774024d;p=plcapi.git removed 'node' role --- diff --git a/PLC/Methods/AuthCheck.py b/PLC/Methods/AuthCheck.py index 0a4c2601..b67ef2a8 100644 --- a/PLC/Methods/AuthCheck.py +++ b/PLC/Methods/AuthCheck.py @@ -8,7 +8,7 @@ class AuthCheck(Method): otherwise. """ - roles = ['admin', 'pi', 'user', 'tech', 'node'] + roles = ['admin', 'pi', 'user', 'tech'] accepts = [Auth()] returns = Parameter(int, '1 if successful')