carlynorama
carlynorama
Note, when going from 0.2.0 -> 0.3.0 one may get into trouble if one hasn't uninstalled all / removed all the symlinks ``` find ~/.local/bin/ -maxdepth 1 -type l find...
This is great!
The documentation says > true if the current process has delete privileges for the file at path; otherwise false if the process does not have delete privileges or the existence...
I do still think it is confusing that isDeletable returns true when no file exists. That should be made clearer in the documentation if the behavior can't be changed, so...
Makes sense! I defer to your deeper knowledge of both systems. Full disclosure, they are rethinking their own 500 errors. They seemed surprised my overrides of their 500s worked. https://forums.swift.org/t/openapi-trying-to-use-soar-0011-errorhandlingmiddleware/81788/6
I'll try that!
Note: If you implement this Middleware before creating a valid `404.html` route, it recurses. If I figure out how to make it not do that other than by making a...
Rough solution to make sure I don't use this before thinking about an actual error page. ```swift import Hummingbird enum NotFoundResponse { case redirect(to: String) case basicPage case string(String) case...