Add back missing authlib-injector account routes

This commit is contained in:
Evan Goode 2025-03-23 20:27:27 -04:00
parent b201152c5c
commit 49ddfa6f7f

View File

@ -295,6 +295,10 @@ func (app *App) MakeServer() *echo.Echo {
e.GET("/account/users/profiles/minecraft/:playerName", accountPlayerNameToID)
e.POST("/account/profiles/minecraft", accountPlayerNamesToIDs)
e.GET("/authlib-injector/api/user/security/location", accountVerifySecurityLocation)
e.GET("/authlib-injector/api/users/profiles/minecraft/:playerName", accountPlayerNameToID)
e.POST("/authlib-injector/api/profiles/minecraft", accountPlayerNamesToIDs)
// Session
sessionHasJoined := SessionHasJoined(app)
sessionCheckServer := SessionCheckServer(app)