Created
April 12, 2015 12:43
-
-
Save smpallen99/a96a6dac9cbc805a8cbf to your computer and use it in GitHub Desktop.
Conform tuple support
This file contains hidden or 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
# Provide documentation for cfg.settings.login_defaults here. | |
cfg.settings.login_defaults = {/orange,[email protected]}, {/orange/monitor,[email protected]} |
This file contains hidden or 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
[ | |
mappings: [ | |
"cfg.settings.login_defaults": [ | |
doc: "Provide documentation for cfg.settings.login_defaults here.", | |
to: "cfg.settings.login_defaults", | |
datatype: [ | |
list: :tuple | |
], | |
default: [ | |
{"/orange", "[email protected]"}, | |
{"/orange/monitor", "[email protected]"} | |
] | |
] | |
], | |
translations: [ | |
] | |
] |
This file contains hidden or 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
use Mix.Config | |
config :cfg, :settings, [ | |
login_defaults: [ | |
{"/orange", "[email protected]"}, | |
{"/orange/monitor", "[email protected]"}, | |
] | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment