From d3de6a8fc3e476f72952e1624d6b217fa7215c03 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 14 Apr 2015 15:31:56 +0000 Subject: [PATCH] Add "desktop" as an fmn backend in staging. --- roles/notifs/backend/templates/fmn.consumer.py | 2 +- roles/notifs/frontend/templates/fmn.web.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/notifs/backend/templates/fmn.consumer.py b/roles/notifs/backend/templates/fmn.consumer.py index 53dfce89ee..0d264c6ddf 100644 --- a/roles/notifs/backend/templates/fmn.consumer.py +++ b/roles/notifs/backend/templates/fmn.consumer.py @@ -109,7 +109,7 @@ config = { ## Backend stuff ## {% if env == 'staging' %} - "fmn.backends": ["email", "irc", "android"], + "fmn.backends": ["email", "irc", "android", "desktop"], {% else %} "fmn.backends": ["email", "irc"], # android is disabled. {% endif %} diff --git a/roles/notifs/frontend/templates/fmn.web.py b/roles/notifs/frontend/templates/fmn.web.py index 2c54e6c721..78317e6818 100644 --- a/roles/notifs/frontend/templates/fmn.web.py +++ b/roles/notifs/frontend/templates/fmn.web.py @@ -5,7 +5,7 @@ config = { "datanommer.sqlalchemy.url": "postgresql://{{datanommerDBUser}}:{{datanommerDBPassword}}@db-datanommer/datanommer", {% if env == 'staging' %} - "fmn.backends": ["email", "irc", "android"], + "fmn.backends": ["email", "irc", "android", "desktop"], {% else %} "fmn.backends": ["email", "irc"], # android is disabled. {% endif %}