Consistent about using True and False and not true and false

Patch to make sure that True and False is consistent between
documentation and the configuration template

Change-Id: I562fbccc27a92a9c4f0ed851951f78da0cc5319c
This commit is contained in:
Jonathan Herlin 2018-11-29 21:37:18 +01:00 committed by Adrian Turjak
parent d4ab292a6a
commit 7a0a8f23f0
2 changed files with 7 additions and 7 deletions

View File

@ -178,19 +178,19 @@ DEFAULT_ACTION_SETTINGS:
days_between_autoapprove: 30 days_between_autoapprove: 30
SendAdditionalEmailAction: SendAdditionalEmailAction:
initial: initial:
email_current_user: false email_current_user: False
reply: no-reply@example.com reply: no-reply@example.com
from: bounce+%(task_uuid)s@example.com from: bounce+%(task_uuid)s@example.com
subject: "Openstack Email Notification" subject: "Openstack Email Notification"
template: null template: null
token: token:
email_current_user: false email_current_user: False
reply: no-reply@example.com reply: no-reply@example.com
from: bounce+%(task_uuid)s@example.com from: bounce+%(task_uuid)s@example.com
subject: "Openstack Email Notification" subject: "Openstack Email Notification"
template: null template: null
completed: completed:
email_current_user: false email_current_user: False
reply: no-reply@example.com reply: no-reply@example.com
from: bounce+%(task_uuid)s@example.com from: bounce+%(task_uuid)s@example.com
subject: "Openstack Email Notification" subject: "Openstack Email Notification"
@ -200,7 +200,7 @@ DEFAULT_ACTION_SETTINGS:
# email_roles: # email_roles:
# - project_admin # - project_admin
# Or sends to an email set in the task cache # Or sends to an email set in the task cache
# email_task_cache: true # email_task_cache: True
# Or sends to an arbitrary admin email # Or sends to an arbitrary admin email
# email_additional_addresses: # email_additional_addresses:
# - admin@example.org # - admin@example.org

View File

@ -233,9 +233,9 @@ for it's related task view.
The additional email action can also send to a subset of people. The additional email action can also send to a subset of people.
The user who made the request can be emailed with :: The user who made the request can be emailed with::
email_current_user: true email_current_user: True
Or the email can be sent to everyone who has a certain role on the project. Or the email can be sent to everyone who has a certain role on the project.
(Multiple roles can also be specified) (Multiple roles can also be specified)
@ -248,7 +248,7 @@ Or the email can be sent to everyone who has a certain role on the project.
Or an email can be sent to a specified address in the task cache Or an email can be sent to a specified address in the task cache
(key: ``additional_emails``) :: (key: ``additional_emails``) ::
email_in_task_cache: true email_in_task_cache: True
Or sent to an arbitrary administrative email address(es):: Or sent to an arbitrary administrative email address(es)::