accounts: add ability to label users

press the pen icon next to their username to add a nick-name to remind
you who they are.
This commit is contained in:
Harvey Tindall
2022-01-08 16:20:31 +00:00
parent 3294b27029
commit 4024334c0c
6 changed files with 123 additions and 14 deletions
+1
View File
@@ -160,6 +160,7 @@ func (app *appContext) loadRoutes(router *gin.Engine) {
api.DELETE(p+"/profiles", app.DeleteProfile)
api.POST(p+"/invites/notify", app.SetNotify)
api.POST(p+"/users/emails", app.ModifyEmails)
api.POST(p+"/users/labels", app.ModifyLabels)
// api.POST(p + "/setDefaults", app.SetDefaults)
api.POST(p+"/users/settings", app.ApplySettings)
api.POST(p+"/users/announce", app.Announce)