File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 4
4
5
5
BUG FIXES:
6
6
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 ` .
8
9
9
10
## 0.4.0 (October 19, 2021)
10
11
Original file line number Diff line number Diff line change 6
6
{% if access ['allow' ] is defined and access ['allow' ] is sequence %}
7
7
{% for allow in access ['allow' ] if access ['allow' ] is not string %}
8
8
allow {{ allow }};
9
- {% else %} }
9
+ {% else %}
10
10
allow {{ access['allow'] }};
11
11
{% endfor %}
12
12
{% endif %}
@@ -76,4 +76,5 @@ auth_jwt_type {{ auth_jwt['type'] }};
76
76
{% if auth_jwt ['require' ] is defined %}
77
77
auth_jwt_require {{ auth_jwt['require'] if auth_jwt['require'] is string else auth_jwt['require'] | join(' ') }};
78
78
{% endif %}
79
- {% endmacro %}
79
+
80
+ {% endmacro %}
You can’t perform that action at this time.
0 commit comments