Correcting url in action_plan policy

url in action_plan policy file is:
'path': '/v1/action_plans/{action_plan_uuid}/action'
whereas it shouls be :
'path': '/v1/action_plans/{action_plan_uuid}/start'

Related-Bug: #1756274

Change-Id: Ic15fed9af739b59efb2777b70514697747b2af7f
This commit is contained in:
rajat29 2018-06-07 17:51:35 +05:30 committed by Hidekazu Nakamura
parent a330576eae
commit 5f93e96b7a
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ rules = [
description='Start an action plans.',
operations=[
{
'path': '/v1/action_plans/{action_plan_uuid}/action',
'path': '/v1/action_plans/{action_plan_uuid}/start',
'method': 'POST'
}
]