aboutsummaryrefslogtreecommitdiff
path: root/src/web/views/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 07:51:53 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-06 07:51:53 +0200
commit5673c95312d0661488c86b21dfb8653b6d249c43 (patch)
treeeb979c9282fc39166dc795c469e11c549f3880fc /src/web/views/views.py
parentUpdated about page. (diff)
downloadnewspipe-5673c95312d0661488c86b21dfb8653b6d249c43.tar.gz
newspipe-5673c95312d0661488c86b21dfb8653b6d249c43.tar.bz2
newspipe-5673c95312d0661488c86b21dfb8653b6d249c43.zip
Removed now useless endpoint.
Diffstat (limited to 'src/web/views/views.py')
-rw-r--r--src/web/views/views.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/web/views/views.py b/src/web/views/views.py
index d599143f..4dffdf37 100644
--- a/src/web/views/views.py
+++ b/src/web/views/views.py
@@ -85,10 +85,3 @@ def about_more():
newspipe_version=__version__.split()[1],
python_version="{}.{}.{}".format(*sys.version_info[:3]),
nb_users=UserController().read().count())
-
-@current_app.route('/.well-known/acme-challenge/MmwFRp_wOgBGHcIULSUGVFDjpryEw_uWz7UgD6rE4t4')
-def letsencrypt():
- """
- To validate the TLS certificate.
- """
- return 'MmwFRp_wOgBGHcIULSUGVFDjpryEw_uWz7UgD6rE4t4.bUlx3NWj4YZ59CkBunuvzS0GnW5Kh9i4yehDEP4AEdU'
bgstack15