Skip to content

Commit 4ba9d10

Browse files
authored
Remove duplicated brace in auth.j2 (#185)
1 parent 01d045b commit 4ba9d10

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
BUG FIXES:
66

7-
Fix issue where your `deployment_location` directory would not be properly created due to an outdated variable.
7+
* Fix issue where your `deployment_location` directory would not be properly created due to an outdated variable.
8+
* Remove duplicated brace in `http/auth.j2`.
89

910
## 0.4.0 (October 19, 2021)
1011

templates/http/auth.j2

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% if access['allow'] is defined and access['allow'] is sequence %}
77
{% for allow in access['allow'] if access['allow'] is not string %}
88
allow {{ allow }};
9-
{% else %}}
9+
{% else %}
1010
allow {{ access['allow'] }};
1111
{% endfor %}
1212
{% endif %}
@@ -76,4 +76,5 @@ auth_jwt_type {{ auth_jwt['type'] }};
7676
{% if auth_jwt['require'] is defined %}
7777
auth_jwt_require {{ auth_jwt['require'] if auth_jwt['require'] is string else auth_jwt['require'] | join(' ') }};
7878
{% endif %}
79-
{% endmacro %}
79+
80+
{% endmacro %}

0 commit comments

Comments
 (0)