copr-fe-dev: whitelist -> allowlist

This commit is contained in:
Pavel Raiskup 2021-11-02 10:48:07 +01:00
parent 9474def0f3
commit d8659c221f
2 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@ letsencrypt:
challenge_dir: /var/www/html
mail: copr-devel@lists.fedorahosted.org
whitelist_emails:
allowlist_emails:
- msuchy@redhat.com
- praiskup@redhat.com
- jkadlcik@redhat.com

View file

@ -115,10 +115,10 @@ DISCOURSE_URL = "https://discussion.fedoraproject.org/"
# any real system, instead it is a temporary alias for "epel-8". In such case,
# set this to {"epel-8": "rhelbeta-8"}
CHROOT_NAME_RELEASE_ALIAS = {"epel-8": "rhelbeta-8"}
{% if whitelist_emails is defined %}
{% if allowlist_emails is defined %}
ALLOWLIST_EMAILS = [
{% for recipient in whitelist_emails %}
{% for recipient in allowlist_emails %}
"{{ recipient }}",
{% endfor %}
]