implemented user list and editing other users for admin

This commit is contained in:
2025-07-02 22:08:36 +02:00
parent 10c24dd93d
commit ea6ca9e45d
8 changed files with 162 additions and 69 deletions

View File

@@ -2,13 +2,7 @@
package de.srsoftware.umbrella.core;
public class ResponseCode {
public static final int OK = 200;
public static final int REDIRECT = 302;
public static final int BAD_REQUEST = 400;
public static final int UNAUTHORIZED = 401;
public static final int FORBIDDEN = 403;
public static final int NOT_FOUND = 404;
public static final int UNPROCESSABLE = 422;
public static final int SERVER_ERROR = 500;
public static final int NOT_IMPLEMENTED = 501;
public static final int HTTP_UNPROCESSABLE = 422;
public static final int HTTP_SERVER_ERROR = 500;
public static final int HTTP_NOT_IMPLEMENTED = 501;
}