Laurie Hufford
Laurie Hufford
FYI, an implementation of the hacky solution I described at the bottom could look something like this: ```swift extension URLNavigator { func initialize() { self.scheme = "myapp" self.map("/users/") { (url,...
For example: ```swift Navigator.map("/users/", handler) // then later: Navigator.open("myapp://users/abc123") ``` The issue is that a scheme is required to have been set (either with `scheme` property, or in the `map(:)`...
Kind of, but without the need for the wildcard. I think the closest to what i'm talking is about is how JLRoutes handles it... this seems like a very flexible...
Having investigated further, it seems that the real issue lies with `first_line_contains_header: false`. If I change that to true, and add a header to the csv file, it uploads correctly....
@Andrulko Noted, thanks :) Seems like a very strange, counter-intuitive implementation to me, that should at the very least be documented.
Note - there still seems to be an problem with this type of scheme... it doesnt work :( I've made another issue about this: #41