aboutsummaryrefslogtreecommitdiff
path: root/source/pyAggr3g470r.py
diff options
context:
space:
mode:
Diffstat (limited to 'source/pyAggr3g470r.py')
-rwxr-xr-xsource/pyAggr3g470r.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index abfdaa2a..71aa3243 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -514,6 +514,23 @@ class pyAggr3g470r(object):
remove_feed.exposed = True
@auth.require()
+ def change_site_url(self, feed_id, old_site_url, new_site_url):
+ """
+ Enables to change the URL of a site present in the database.
+ """
+ try:
+ self.mongo.update_feed(feed_id, {"site_link":new_site_url})
+ tmpl = lookup.get_template("confirmation.html")
+ message = "<p>The URL of the site has been changed.</p>"
+ except:
+ tmpl = lookup.get_template("error.html")
+ message = "<p>Error when changing the URL of the site.</p>"
+ finally:
+ return tmpl.render(message=message)
+
+ change_site_url.exposed = True
+
+ @auth.require()
def change_feed_url(self, feed_id, old_feed_url, new_feed_url):
"""
Enables to change the URL of a feed already present in the database.
bgstack15