summaryrefslogtreecommitdiff
path: root/html/app/routes/api.php
diff options
context:
space:
mode:
authorGeo Xalkis <gx23100@gmail.com>2023-04-02 06:16:40 +0300
committerGeo Xalkis <gx23100@gmail.com>2023-04-02 06:16:40 +0300
commit0d317dc0cfe6ae2b6b62d711b7ae67e63555235f (patch)
treeca02d2af6a7b17fe6100e57d784f0bb4c07ebf9b /html/app/routes/api.php
parentc95daba5206cb4bd55b5685e8141311f23606e1a (diff)
downloadclassroom-0d317dc0cfe6ae2b6b62d711b7ae67e63555235f.tar.gz
classroom-0d317dc0cfe6ae2b6b62d711b7ae67e63555235f.tar.bz2
classroom-0d317dc0cfe6ae2b6b62d711b7ae67e63555235f.zip
several updates on user registration
Diffstat (limited to 'html/app/routes/api.php')
-rw-r--r--html/app/routes/api.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/html/app/routes/api.php b/html/app/routes/api.php
index ecf15fb..61e485b 100644
--- a/html/app/routes/api.php
+++ b/html/app/routes/api.php
@@ -55,18 +55,6 @@ Route::add('/api/([0-9a-zA-Z-_]*)/([0-9]*)',
*/
-// user sends a registration form;
-Route::add('/xml/register', function() { $x = Auth::register(); print_r($x); }, 'post');
-
-
-// user sends a confirmation request (alongside with some 'account' token)
-Route::add('/xml/confirm-account', function() { Auth::confirm_account(); } );
-
-
-// user sends a reset password request)
-Route::add('/xml/reset-password', function() { Auth::confirm(); } );
-
-
/** TEST CALLS
@@ -77,7 +65,6 @@ Route::add('/xml/reset-password', function() { Auth::confirm(); } );
*/
-
// route for testing...
// ---
Route::add('/test/([0-9a-zA-Z-_\/]*)', function($test) {