jojo

Results 13 comments of jojo

Do you have any idea about then it can be released?

@kenjis I see thank you for the support I set the strict rules and i have ``` 'integerGreaterThan1' => 'is_int|greater_than_equal_to[1] ``` and i have an error as below ``` {...

If i set the strict rules, does it mean than i cannot use the available rules in CI? https://codeigniter4.github.io/CodeIgniter4/libraries/validation.html#available-rules

Sorry i didn't get the question well but In case of the client as below ``` { "integerGreaterOrEqualTo1": 1, } ``` Validation is true ``` { "integerGreaterOrEqualTo1": "1", } ```...

I need to be sure in the process of my api than the parameter in an integer I can cast it in int by myself but it think it's better...

the problem in that case is if the client send ``` { "integerGreaterOrEqualTo1": "1", } ``` there is no problem but if he send ``` { "integerGreaterOrEqualTo1": 1, } ```...

I use the fetch wrapper as below ```js const app = new Hono(); Bun.serve({ hostname: process.env.HOST, fetch(req, server) { return app.fetch(req, { ip: server.requestIP(req) }); }, port: process.env.PORT, }); ```