Move one more thing

This commit is contained in:
Colin McDonald 2016-04-30 20:45:19 -04:00
parent 84b4a184ed
commit 0b5d5c8071

View File

@ -103,6 +103,7 @@ public final class APIv3 {
get("/announcements", new GETAnnouncements(), gson::toJson);
get("/auditLog", new GETAuditLog(), gson::toJson);
get("/chatFilterList", new GETChatFilterList(), gson::toJson);
get("/dump/:type", new GETDump(), gson::toJson);
get("/grants", new GETGrants(), gson::toJson);
delete("/grant/:id", new DELETEGrant(), gson::toJson);
@ -136,8 +137,6 @@ public final class APIv3 {
//put("/server/:id", new PUTServer(), gson::toJson);
delete("/server/:id", new DELETEServer(), gson::toJson);
get("/dump/:type", new GETDump(), gson::toJson);
get("/staff", new GETStaff(), gson::toJson);
get("/user/:id/details", new GETUserDetails(), gson::toJson);
get("/user/:id/meta/:serverGroup", new GETUserMeta(), gson::toJson);