Jeremy Saenz
Jeremy Saenz
Hey @randyf2022, If I'm understanding correctly you are wanting to share a JetStream stream. What about in in particular do you want to share? (there is currently more subjects you...
I need to look at the code more, but I like the idea of having a unified interface for Auth as long as it makes sense :) Sent from my...
This is as designed. Things in the public folder should be treated as public. If you want static files that are authenticated then you should add a static middleware after...
This is an interesting problem. It makes me wonder if it would make more sense for the recovery middleware to get the responsewriter after `context.Next()` is called. That way the...
Cool. I can look into testing this out sometime this week. Otherwise if one if you want to take a crack at it you are more than welcome to :)
I went ahead and fixed this in martini core. https://github.com/codegangsta/martini/commit/06dc3e9688c52f273f9cd8cd833e08b50e49b677 Please confirm that it works on your end
This is because render uses the ResponseWriter that is injected into it's handler function. render.Renderer _could_ grab the ResponseWriter from the context right before it renders things, but that would...
Yeah this would be great to have. There are some unfortunate limitation as to how Go's template library works with helper functions. There may be some clever ways to do...
I haven't considered this yet. It might be worthwhile to look into.
in the least part it would be cool to have a separate middleware that brings in one of these other template engines and supports the `render.Render` interface