Michael DeHaan
Michael DeHaan
Hi, We’re using Jinja2 throughout and it does not auto escape HTML - this is fine actually - we are not doing this for the form pages (forms code handles...
Hi @chopraaa, Thanks for the heads up that this may be unclear, I should make it more obvious that this will create the vespene user in the docs. It's intended...
Hmm, interesting. I had no idea it would do that if your time zone configuration was off UTC. I found this answer https://stackoverflow.com/questions/38807296/django-1-9-2-assertionerror-database-connection-isnt-set-to-utc Can you perhaps dig in and see...
Sorry for the late reply on this one - I think this is something I'll see about adding to the setup guide as something to look into if you hit...
Figured I'd leave some thoughts here as I recently went through the exercise of a 2->3 port. - Much of the system is a "low level" API returning CamelCase dicts....
the tracebacks in the chiseld log are useful as if the client app is complex they can see the whole history of tracebacks interleaved with console.log messages. If they aren't...
here was the invalid JSON in the post body, in case only some exception types aren't coming through: ``` { "secret" : "yourSecretCodeHere", } ``` the problem is the extra...
HTTP 400 error seems appropriate as it's a user error on the client end, but the server also returned HTTP 500, which is not correct.
this is from the gatsy example https://github.com/chiselstrike/chiselstrike-examples/blob/main/gatsby/backend/models/BlogComment.ts any pointers to how to make a field required would be good, and I can add it to the docs and eventually we...
@penberg - validators that attach to the properties, especially if you can supply your own callbacks would be a win. There's also the question of validating that the object is...