aboutsummaryrefslogtreecommitdiff
path: root/pkg/handler/router.go
AgeCommit message (Collapse)Author
13 daysfeat: Remove config pageGabriel A. Giovanini
That page was created as playground and had some debug purpose. Now that is not longer used and with introduction of sensible information (hash and aes-key) that has to go.
2024-06-25feat: Add commit pageGabriel A. Giovanini
2024-06-23fix: Fix bin file not being writen to tarGabriel A. Giovanini
FileContent was not working for bin file (nor was meant to). Moving to blob reader solves the issue.
2024-06-22feat: Add archive capabilityGabriel A. Giovanini
2024-06-15fix: Reduce some redirectsv0.0.5Gabriel A. Giovanini
2024-06-08feat: Add error handlingGabriel A. Giovanini
2024-06-07feat: Rework some pagesGabriel A. Giovanini
2024-06-07feat: Add compressionGabriel A. Giovanini
2024-06-07feat: Add blob endpointGabriel A. Giovanini
2024-06-01ref: Remove muxGabriel A. Giovanini
2024-06-01feat: Add ref supportGabriel A. Giovanini
Now log and tree can be loaded using a given reference.
2024-05-30ref: Move to gorilla muxGabriel A. Giovanini
Go's default mux is very limited while comes to overlapping routes. For example "/{name}/about" conflicts with "/static/" and it throws a panic. In the case I would like static to have precedence over everything else.
2024-05-30feat: Add initial git item pageGabriel A. Giovanini
2024-05-27feat: Wraps handler into its own packageGabriel A. Giovanini
Although this creates more complex folder structure will allow in the feature for a easier testing of those given handlers.