mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-11 10:28:41 -04:00
Added routes the new admin page shells
/user-profile /manage-users /service-settings /api-keys
This commit is contained in:
+24
-4
@@ -60,22 +60,22 @@ def twofactor():
|
|||||||
|
|
||||||
@main.route("/send-sms")
|
@main.route("/send-sms")
|
||||||
def sendsms():
|
def sendsms():
|
||||||
return render_template('send_sms.html')
|
return render_template('send-sms.html')
|
||||||
|
|
||||||
|
|
||||||
@main.route("/check-sms")
|
@main.route("/check-sms")
|
||||||
def checksms():
|
def checksms():
|
||||||
return render_template('check_sms.html')
|
return render_template('check-sms.html')
|
||||||
|
|
||||||
|
|
||||||
@main.route("/send-email")
|
@main.route("/send-email")
|
||||||
def sendemail():
|
def sendemail():
|
||||||
return render_template('send_email.html')
|
return render_template('send-email.html')
|
||||||
|
|
||||||
|
|
||||||
@main.route("/check-email")
|
@main.route("/check-email")
|
||||||
def checkemail():
|
def checkemail():
|
||||||
return render_template('check_email.html')
|
return render_template('check-email.html')
|
||||||
|
|
||||||
|
|
||||||
@main.route("/jobs")
|
@main.route("/jobs")
|
||||||
@@ -91,3 +91,23 @@ def showjob():
|
|||||||
@main.route("/jobs/job/notification")
|
@main.route("/jobs/job/notification")
|
||||||
def shownotification():
|
def shownotification():
|
||||||
return render_template('notification.html')
|
return render_template('notification.html')
|
||||||
|
|
||||||
|
|
||||||
|
@main.route("/user-profile")
|
||||||
|
def userprofile():
|
||||||
|
return render_template('user-profile.html')
|
||||||
|
|
||||||
|
|
||||||
|
@main.route("/manage-users")
|
||||||
|
def manageusers():
|
||||||
|
return render_template('manage-users.html')
|
||||||
|
|
||||||
|
|
||||||
|
@main.route("/service-settings")
|
||||||
|
def servicesettings():
|
||||||
|
return render_template('service-settings.html')
|
||||||
|
|
||||||
|
|
||||||
|
@main.route("/api-keys")
|
||||||
|
def apikeys():
|
||||||
|
return render_template('api-keys.html')
|
||||||
|
|||||||
Reference in New Issue
Block a user