Adds logic for making folders

This commit is contained in:
zontreck 2024-05-16 17:30:47 -07:00
parent e71f55cbc4
commit c1dd5e1957
6 changed files with 210 additions and 5 deletions

View file

@ -15,7 +15,8 @@ enum APIEndpoint {
Register(script: "Register.php", path: "/ac/home/supports/"),
Logout(script: "Logout.php", path: "/ac/home/supports/"),
Login(script: "Login.php", path: "/ac/home/supports/"),
ValidateSession(script: "ValidateToken.php", path: "/ac/home/supports/");
ValidateSession(script: "ValidateToken.php", path: "/ac/home/supports/"),
MakeFolder(script: "MakeFolder.php", path: "/ac/home/supports/");
final String script;
final String path;