Thiago Anjos
Thiago Anjos
Little fix in password failed message
Live sobre o conceito de railway utilizando a lib returns -> [https://returns.readthedocs.io/en/latest/pages/railway.html](url) Sugestões de tópicos: - [ ] Error Handling com containers Result e Maybe - [ ] Composição com...
## Package version @adonis/core: 5.8.6 ## Node.js and npm version node: 16.17.0 npm: 8.15.0 ## Sample Code (to reproduce the issue) schema.create({ users: schema .array([rules.distinct('*'), rules.exists({ table: 'users', column: 'id'...
**Is your feature request related to a problem? Please describe.** Seems this pattern P.not(P.nullish) is used a lot **Describe the solution you'd like** An alias like P.defined that wrapper P.not(P.nullish)
Hi Romain! Why adonis-typing omit argument on Queue.process if it's a public method?
Hello! How to update, for example (modified_at) field, using update model method. Example: ``` class User(Model): id = fields.IntField(pk=True) username = fields.CharField(max_length=50) created_at = fields.DatetimeField(auto_now_add=True) modified_at = fields.DatetimeField(auto_now=True) UserUpdate_Pydantic =...