diff options
author | Malf Furious <m@lfurio.us> | 2016-05-22 16:59:43 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2016-05-22 16:59:43 -0400 |
commit | abd11313d0a9f2b28d7b709fcbd98befd95db15c (patch) | |
tree | 152db15fb227134a48fa54d4696f0069bf651d62 /app/controller/root.control.php | |
parent | d431ef2954455ad38454d27f5be866061794b4bf (diff) | |
parent | 2d1e4242a87b54578e24546dabe1525a014da24e (diff) | |
download | scrott-abd11313d0a9f2b28d7b709fcbd98befd95db15c.tar.gz scrott-abd11313d0a9f2b28d7b709fcbd98befd95db15c.zip |
Merge branch 'feature/user-removal' into dev
Diffstat (limited to '')
-rw-r--r-- | app/controller/root.control.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controller/root.control.php b/app/controller/root.control.php index 7017ada..341fa8a 100644 --- a/app/controller/root.control.php +++ b/app/controller/root.control.php @@ -7,6 +7,7 @@ require_once "controller/except.control.php"; require_once "controller/auth.control.php"; require_once "controller/deauth.control.php"; require_once "controller/dashboard.control.php"; +require_once "controller/deleteacct.control.php"; /* * Root-level controller for Scrott app. This object will delegate the page request to the @@ -65,6 +66,7 @@ class Root extends Controller switch ($argv[0]) { case "logout": $ctrl = new Deauth(); break; + case "deleteaccount": $ctrl = new Deleteacct(); break; default: throw new Exception("The requested path is not valid."); break; |