Merge "add watch_rule_get_all_by_stack dbapi call"

This commit is contained in:
Jenkins 2012-11-19 22:54:53 +00:00 committed by Gerrit Code Review
commit 19ac89dd72
2 changed files with 10 additions and 0 deletions

View File

@ -154,6 +154,10 @@ def watch_rule_get_all(context):
return IMPL.watch_rule_get_all(context)
def watch_rule_get_all_by_stack(context, stack_id):
return IMPL.watch_rule_get_all_by_stack(context, stack_id)
def watch_rule_create(context, values):
return IMPL.watch_rule_create(context, values)

View File

@ -271,6 +271,12 @@ def watch_rule_get_all(context):
return results
def watch_rule_get_all_by_stack(context, stack_id):
results = model_query(context, models.WatchRule).\
filter_by(stack_id=stack_id).all()
return results
def watch_rule_create(context, values):
obj_ref = models.WatchRule()
obj_ref.update(values)