get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / GetNodeTypes.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.NodeTypes import NodeType, NodeTypes
5 from PLC.Auth import Auth
6
7 class GetNodeTypes(Method):
8     """
9     Returns an array of all valid node node types.
10     """
11
12     roles = ['admin', 'pi', 'user', 'tech', 'node']
13
14     accepts = [
15         Auth()
16         ]
17
18     returns = [NodeType.fields['node_type']]
19
20
21     def call(self, auth):
22         return [node_type['node_type'] for node_type in NodeTypes(self.api)]