diff options
author | Jenkins <jenkins@review.openstack.org> | 2017-02-15 00:15:21 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2017-02-15 00:15:21 +0000 |
commit | ff362ebea83fd6e91421941dcea9b294e00c4024 (patch) | |
tree | 6a4a7e718fbc18d5b4b7a33f8470b66f80f4e27f /templates/ui | |
parent | dfc498f2adf58c78bd7bd4a3926a658c7c555d5d (diff) | |
parent | 0a44474b55a96fa90b58cbdf006139ba8aa27cc0 (diff) |
Merge "Make quotes consistent to match the sample config"
Diffstat (limited to 'templates/ui')
-rw-r--r-- | templates/ui/tripleo_ui_config.js.erb | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/templates/ui/tripleo_ui_config.js.erb b/templates/ui/tripleo_ui_config.js.erb index 1dd68c6..d49fe8e 100644 --- a/templates/ui/tripleo_ui_config.js.erb +++ b/templates/ui/tripleo_ui_config.js.erb @@ -1,11 +1,25 @@ window.tripleOUiConfig = { - "keystone": "<%= @endpoint_config_keystone %>", - "heat": "<%= @endpoint_config_heat %>", - "ironic": "<%= @endpoint_config_ironic %>", - "mistral": "<%= @endpoint_config_mistral %>", - "swift": "<%= @endpoint_config_swift %>", - "zaqar-websocket": "<%= @endpoint_config_zaqar %>", + // Service URLs (defaults to UI host) + // + // A valid Keystone service URL is required. The other endpoints + // will then be obtained automatically from the Keystone catalog. + // + 'keystone': '<%= @endpoint_config_keystone %>', + 'heat': '<%= @endpoint_config_heat %>', + 'ironic': '<%= @endpoint_config_ironic %>', + 'mistral': '<%= @endpoint_config_mistral %>', + 'swift': '<%= @endpoint_config_swift %>', + 'zaqar-websocket': '<%= @endpoint_config_zaqar %>', // Default websocket queue name - "zaqar_default_queue": "<%= @zaqar_default_queue %>" + 'zaqar_default_queue': '<%= @zaqar_default_queue %>' + + // Languages + // If you choose more than one language, a language switcher will appear in + // the navigation bar. + // Only 'en' (English) is enabled by default. + // 'languages': ['en-GB', 'en', 'ja', 'ko-KR', 'zh-CN', 'es'], + + // Logging + // 'loggers': ['console'] }; |