get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / GetNetworkTypes.py
index 7187d21..dbddd9f 100644 (file)
@@ -9,7 +9,7 @@ class GetNetworkTypes(Method):
     Returns a list of all valid network types.
     """
 
-    roles = ['admin', 'pi', 'user', 'tech']
+    roles = ['admin', 'pi', 'user', 'tech', 'node']
 
     accepts = [
         Auth()
@@ -17,5 +17,6 @@ class GetNetworkTypes(Method):
 
     returns = [NetworkType.fields['type']]
 
+
     def call(self, auth):
         return [network_type['type'] for network_type in NetworkTypes(self.api)]