~ubuntu-branches/ubuntu/trusty/heat/trusty-security

« back to all changes in this revision

Viewing changes to heat/db/api.py

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2013-10-12 16:53:03 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20131012165303-0sc41ujl3luuu56q
Tags: 2013.2~rc2-0ubuntu1
New upstream release candidate (LP: #1239156).

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
    return IMPL.stack_get_all(context)
126
126
 
127
127
 
 
128
def stack_get_all_by_owner_id(context, owner_id):
 
129
    return IMPL.stack_get_all_by_owner_id(context, owner_id)
 
130
 
 
131
 
128
132
def stack_get_all_by_tenant(context):
129
133
    return IMPL.stack_get_all_by_tenant(context)
130
134