Select the types of activity you want to include in your feed.
remove account API endpoints
account management should be done on the frontend. some work will need to be done to generate API keys for external clients, but notably some API endpoints are currently used by the frontend using session tokens.
···1313func Handler(app *model.AppState) http.Handler {
1414 mux := http.NewServeMux()
15151616- // ACCOUNT ENDPOINTS
1717-1818- /*
1919- // temporarily disabling these
2020- // accounts should really be handled via the frontend rn, and juggling
2121- // two different token bearer methods kinda sucks!!
2222- // i'll look into generating API tokens on the frontend in the future
2316 // TODO: generate API keys on the frontend
2424-2525- mux.Handle("/v1/login", handleLogin())
2626- mux.Handle("/v1/register", handleAccountRegistration())
2727- mux.Handle("/v1/delete-account", handleDeleteAccount())
2828- */
29173018 // ARTIST ENDPOINTS
3119