home to your local SPACEGIRL 💫 arimelody.space
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

disable api account endpoints (for now)

+8
+8
api/api.go
··· 15 15 16 16 // ACCOUNT ENDPOINTS 17 17 18 + /* 19 + // temporarily disabling these 20 + // accounts should really be handled via the frontend rn, and juggling 21 + // two different token bearer methods kinda sucks!! 22 + // i'll look into generating API tokens on the frontend in the future 23 + // TODO: generate API keys on the frontend 24 + 18 25 mux.Handle("/v1/login", handleLogin()) 19 26 mux.Handle("/v1/register", handleAccountRegistration()) 20 27 mux.Handle("/v1/delete-account", handleDeleteAccount()) 28 + */ 21 29 22 30 // ARTIST ENDPOINTS 23 31