all repos

mugit @ 3590ac8

๐Ÿฎ git server that your cow will love
1 files changed, 1 insertions(+), 1 deletions(-)
ui: /{name}/ no longer renders index(not the repo one) page
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-03-09 20:36:55 +0200
Authored at: 2026-03-09 20:35:06 +0200
Change ID: zquywlvowtmzlnnoupwmzvssrkxqvvmw
Parent: a744b78
M internal/handlers/handlers.go
ยทยทยท
        39
        39
         	mux.HandleFunc("GET /", h.indexHandler)

      
        40
        40
         	mux.HandleFunc("GET /index.xml", h.indexFeedHandler)

      
        41
        41
         	mux.HandleFunc("GET /static/{file}", h.serveStaticHandler)

      
        42
        
        -	mux.HandleFunc("GET /{name}", h.repoIndexHandler)

      
        
        42
        +	mux.HandleFunc("GET /{name}/{$}", h.repoIndexHandler)

      
        43
        43
         	mux.HandleFunc("GET /{name}/info/refs", h.infoRefsHandler)

      
        44
        44
         	mux.HandleFunc("POST /{name}/git-upload-pack", h.uploadPackHandler)

      
        45
        45
         	mux.HandleFunc("POST /{name}/git-receive-pack", h.receivePackHandler)