Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Silva <sebastian@somosazucar.org>2013-04-25 16:32:59 (GMT)
committer Sebastian Silva <sebastian@somosazucar.org>2013-04-25 16:34:40 (GMT)
commit04ef8a50f751c7844c5119eaa164af575249cc5b (patch)
treee2f68d2cd712b0c922ec1b4b295b48ff37be38b5
parented3b77c3c6c455121191d45a51ce8df57b8401f8 (diff)
point to pilot layer for new projects
-rw-r--r--sugar_network_webui/app.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sugar_network_webui/app.py b/sugar_network_webui/app.py
index d8496ee..5c0f317 100644
--- a/sugar_network_webui/app.py
+++ b/sugar_network_webui/app.py
@@ -844,7 +844,7 @@ def new_resource():
def update_context():
context = g.client.Context(request.form['edit_guid'])
context['title'] = request.form['title']
- context['layer'] = ['public', 'peruvian-pilot']
+ context['layer'] = ['public', 'pilot']
context['summary'] = request.form['summary']
context['description'] = request.form['content']
if context['title'] and context['description'] and context['summary']:
@@ -859,7 +859,7 @@ def new_context():
context = g.client.Context()
context['type'] = ['project']
context['title'] = request.form['title']
- context['layer'] = ['public', 'peruvian-pilot']
+ context['layer'] = ['public', 'pilot']
context['summary'] = request.form['summary']
context['description'] = request.form['content']
if context['title'] and context['description'] and context['summary']: