Ejemplo n.º 1
0
    def __init__(self, module):
        ApiController.__init__(self, module)

        self.version = 'v2.0'
        self.child_classes = [Scheduler, TaskManager]

        self.manager = SchedulerDbManager()
Ejemplo n.º 2
0
    def __init__(self, module):
        ApiController.__init__(self, module)

        self.manager = AuthDbManager()
        self.auth_manager = AuthDbManager()
Ejemplo n.º 3
0
    def __init__(self, module):
        ApiController.__init__(self, module)

        self.manager = ConfigDbManager()
        self.child_classes = [Config]
Ejemplo n.º 4
0
    def __init__(self, module):
        ApiController.__init__(self, module)

        self.child_classes = [Scheduler, TaskManager]
Ejemplo n.º 5
0
    def __init__(self, module):
        ApiController.__init__(self, module)

        self.event_manager = EventDbManager()
        
        self.child_classes = [GenericEvent]