-
-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 3672 yml template quoted values (#3679)
* Add validator of HTTP methods. Move list of http methods to separate method and add settings for it. Change twig template to generate the methods based on HTTP methods accrodingly * Add quotes for values in YAML templates where theoretically we can have the wrong data
- Loading branch information
Showing
6 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
name: {{ profile }} | ||
type: {{ type }} | ||
description: {{ description }} | ||
description: '{{ description }}' | ||
core: {{ core }} | ||
{% if distribution %} | ||
|
||
distribution: | ||
name: {{ distribution }} | ||
name: '{{ distribution }}' | ||
{% endif %} | ||
{% if dependencies %} | ||
|
||
dependencies: | ||
{% for dependency in dependencies %} | ||
- {{ dependency }} | ||
- '{{ dependency }}' | ||
{% endfor %} | ||
{% endif %} | ||
{% if themes %} | ||
|
||
themes: | ||
{% for theme in themes %} | ||
- {{ theme }} | ||
- '{{ theme }}' | ||
{% endfor %} | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters