class RootController(object): actions = ActionsController() actionexecutions = ActionExecutionsController() executions = actionexecutions # We should deprecate actionexecutions. runnertypes = RunnerTypesController() sensortypes = SensorTypeController() triggertypes = TriggerTypeController() triggers = TriggerController() triggerinstances = TriggerInstanceController() rules = RuleController() keys = KeyValuePairController() webhooks = WebhooksController() stream = StreamController()
class RootController(object): actions = ActionsController() actionexecutions = ActionExecutionsController() runnertypes = RunnerTypesController() sensortypes = SensorTypeController() triggertypes = TriggerTypeController() triggers = TriggerController() triggerinstances = TriggerInstanceController() rules = RuleController() keys = KeyValuePairController() history = HistoryController() webhooks = WebhooksController() stream = StreamController() @expose(generic=True, template='index.html') def index(self): return dict()
class RootController(object): packs = PacksController() actions = ActionsController() actionexecutions = ActionExecutionsController() executions = actionexecutions # We should deprecate actionexecutions. policies = PolicyController() policytypes = PolicyTypeController() runnertypes = RunnerTypesController() sensortypes = SensorTypeController() triggertypes = TriggerTypeController() triggers = TriggerController() triggerinstances = TriggerInstanceController() rules = RuleController() keys = KeyValuePairController() webhooks = WebhooksController() stream = StreamController() actionalias = ActionAliasController() aliasexecution = ActionAliasExecutionController()