Generate default ACUL config stub.
()
| 198 | |
| 199 | // Generate default ACUL config stub. |
| 200 | func defaultACULConfig() map[string]interface{} { |
| 201 | return map[string]interface{}{ |
| 202 | "rendering_mode": "standard", |
| 203 | "context_configuration": []interface{}{}, |
| 204 | "use_page_template": false, |
| 205 | "default_head_tags_disabled": false, |
| 206 | "head_tags": []interface{}{}, |
| 207 | "filters": map[string]interface{}{}, |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | func aculConfigGenerateCmd(cli *cli) *cobra.Command { |
| 212 | var input aculConfigInput |
no outgoing calls
no test coverage detected