Adding needed cache value for completed templated

Change-Id: I8c65f2d26508358d7ca4a1671310c49feaa31d10
This commit is contained in:
adrian-turjak 2017-01-09 12:30:20 +13:00
parent c7ea1d42da
commit 6112a9506c

View File

@ -514,6 +514,9 @@ class NewUserAction(UserNameAction, ProjectMixin, UserMixin):
if not self.valid:
return
# add to cache to use in template
self.action.task.cache['user_state'] = self.action.state
if self.action.state == "default":
# default action: Create a new user in the tenant and add roles
user = self.create_user(token_data['password'])
@ -888,6 +891,9 @@ class NewProjectWithUserAction(UserNameAction, ProjectMixin, UserMixin):
if not self.valid:
return
# add to cache to use in template
self.action.task.cache['user_state'] = self.action.state
project_id = self.get_cache('project_id')
self.action.task.cache['project_id'] = project_id
user_id = self.get_cache('user_id')