summaryrefslogtreecommitdiff
path: root/mux.go
AgeCommit message (Collapse)Author
2023-04-01Implement recipe deletionxengineering
2023-03-31Reduce to ID and Markdownxengineering
The upstream URL can be encoded easily by the user in the Markdown-based description. The title can be parsed by the first found top-level heading in the Markdown text. Thus these two columns are no longer used. To avoid an additional migration they will be kept in the database.
2023-03-31Remove image functionalityxengineering
Recipe images are currently complicated to implement and have little use. Probably they will not be covered in the next release.
2023-02-11Apply go fmt *.goxengineering
This auto-applies the recommended Go codestyle.
2023-02-11Make multiplexer regular handlersxengineering
Multiplexer functions used to return closures which are able to handle HTTP requests for historc reasons. Now the multiplexers can be regular HTTP handlers which is simpler.
2023-02-11Switch to global database pointerxengineering
Passing the database pointer around is a lot of text and has no benefit.
2023-02-11Switch webserver to global config structxengineering
2023-02-09Migrate to multiplexer conceptxengineering
This introduces a layered approach to handling HTTP requests: - server layer - path layer - request layer The multiplexer file cares about the path layer. It delegates the request handling to handlers from the request layer.