Remove doubled function call

This commit is contained in:
JakobDev 2024-05-17 23:09:54 +02:00
parent a1b1e6c279
commit d5464a1a9b
No known key found for this signature in database
GPG Key ID: 39DEF62C3ED6DC4C
1 changed files with 0 additions and 1 deletions

View File

@ -769,7 +769,6 @@ func registerRoutes(m *web.Route) {
m.Post("/-/starlist_edit", web.Bind(forms.EditStarListForm{}), user.EditStarListPost)
}, context.UserAssignmentWeb())
m.Get("/attachments/{uuid}", repo.GetAttachment)
m.Get("/{username}", user.UsernameSubRoute)
m.Methods("GET, OPTIONS", "/attachments/{uuid}", optionsCorsHandler(), repo.GetAttachment)
}, ignSignIn)