-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Features for 2.0 and beyond #66
Comments
Would be great to have |
That doesn't really work with JSON schema based validation. And has become kinda obsolete with Edit: And for the record, mojo.js session cookies default to |
I’d be willing to create a chat example if someone tells me how to broadcast to websocket clients |
The blue checkmark means it's already done. |
Unfortunately, SameSite cookies don't protect CSRF attacks on websockets. Please see this article. So as mentioned there we would need at least to check on the Origin header or use some kind of random generated csrf token. |
With the 1.0 release
quickly approachingdone, it is time to make a list of features we would like to see afterwards.app.plugin(mountPlugin, {app: fooApp, path: '/prefix'})
)ctx.foo.bar(...)
)Mojo::URL
)ctx.proxyGet()
,ctx.proxyRequest()
)ctx.urlForAsset('foo.js')
returns/static/assets/foo.abcd1234.js
)foo.development.js
)http+unix://...
)http+unix://...
)colorFieldTag
dateFieldTag
datetimeFieldTag
emailFieldTag
fileFieldTag
hiddenFieldTag
labelFor
monthFieldTag
numberFieldTag
passwordFieldTag
rangeFieldTag
searchFieldTag
selectFieldTag
(telFieldTag
textFieldTag
timeFieldTag
urlFieldTag
weekFieldTag
--ts
flag)perl -Mojo -E '...'
equivalent (something better thannpx mojo eval -v '...'
?)The text was updated successfully, but these errors were encountered: