big changes hehe
This commit is contained in:
22
endpoints/global/account.php
Normal file
22
endpoints/global/account.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
require_once "lib/account.php";
|
||||
|
||||
function endpoint($endpoint_data)
|
||||
{
|
||||
switch ($endpoint_data["action"]){
|
||||
|
||||
case "login":
|
||||
return doLogin($endpoint_data["email"], $endpoint_data["password"]);
|
||||
break;
|
||||
|
||||
case "logout":
|
||||
return doLogout();
|
||||
break;
|
||||
|
||||
case "register":
|
||||
return doRegister($endpoint_data["firstname"], $endpoint_data["lastname"], $endpoint_data["nickname"], $endpoint_data["email"], $endpoint_data["password"], $endpoint_data["minecraftnick"], $endpoint_data["activation_token"]);
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user