Add more per-user stack support (2).

This finishes up the API calls with per-user returns of stacks and
events.

Change-Id: Iab6118f35978a6f62ad4d3454842cb7f3d686bc8
Signed-off-by: Ian Main <imain@redhat.com>
This commit is contained in:
Ian Main
2012-06-18 09:47:34 -07:00
parent d09bad5bef
commit b40d770864
3 changed files with 17 additions and 2 deletions

View File

@@ -140,6 +140,10 @@ def event_get_all(context):
return IMPL.event_get_all(context)
def event_get_all_by_user(context):
return IMPL.event_get_all_by_user(context)
def event_get_all_by_stack(context, stack_id):
return IMPL.event_get_all_by_stack(context, stack_id)