Enable android fmn context (stg only)

Signed-off-by: Ricky Elrod <codeblock@fedoraproject.org>
This commit is contained in:
Rick Elrod 2014-09-02 22:34:51 +00:00
parent 180260dcea
commit 66ed1f6242
2 changed files with 9 additions and 1 deletions

View file

@ -64,7 +64,11 @@ config = {
## Backend stuff ##
{% if env == 'staging' %}
"fmn.backends": ["email", "irc", "android"],
{% else %}
"fmn.backends": ["email", "irc"], # android is disabled.
{% endif %}
# Email
"fmn.email.mailserver": "bastion01.phx2.fedoraproject.org:25",

View file

@ -4,7 +4,11 @@ config = {
# And this is for the datanommer database
"datanommer.sqlalchemy.url": "postgresql://{{datanommerDBUser}}:{{datanommerDBPassword}}@db-datanommer/datanommer",
"fmn.backends": ["irc", "email"], # But "android" is disabled.
{% if env == 'staging' %}
"fmn.backends": ["email", "irc", "android"],
{% else %}
"fmn.backends": ["email", "irc"], # android is disabled.
{% endif %}
"fmn.web.default_login": "fedora_login",
}