mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 21:49:37 -04:00
Remove unused pages with buttons
We had two templates that contained a link styled as an old style button but that weren't being used anywhere (one would actually give a `500` if you tried to visit it). This removes them and the view function for one of them (the other no longer had a view function).
This commit is contained in:
@@ -21,7 +21,7 @@ from app.main.views.sub_navigation_dictionaries import (
|
||||
pricing_nav,
|
||||
using_notify_nav,
|
||||
)
|
||||
from app.utils import get_logo_cdn_domain, user_is_logged_in
|
||||
from app.utils import get_logo_cdn_domain
|
||||
|
||||
|
||||
@main.route('/')
|
||||
@@ -54,12 +54,6 @@ def error(status_code):
|
||||
abort(status_code)
|
||||
|
||||
|
||||
@main.route("/verify-mobile")
|
||||
@user_is_logged_in
|
||||
def verify_mobile():
|
||||
return render_template('views/verify-mobile.html')
|
||||
|
||||
|
||||
@main.route('/cookies')
|
||||
def cookies():
|
||||
return render_template('views/cookies.html')
|
||||
|
||||
Reference in New Issue
Block a user