Enable android fmn context (stg only)
Signed-off-by: Ricky Elrod <codeblock@fedoraproject.org>
This commit is contained in:
parent
180260dcea
commit
66ed1f6242
2 changed files with 9 additions and 1 deletions
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue