aindot
aindot
Hello, You can query the back-end directly at the end point /api, all the routes are listed in [api.php](https://github.com/JhumanJ/OpnForm/blob/main/api/routes/api.php). To authenticate and get your token you can use: ```bash ~$...
The date picker is out of boundary, both PC and mobile if there is no other element that push the filed to the top.  And while using the select...
Hello, I can confirm it, Google captcha won't load but hCaptcha do work. The issue is only presented with the docker deployment
Enable Citext extension. ``` SQL CREATE EXTENSION IF NOT EXISTS citext; ``` Alter the column type ``` SQL ALTER TABLE tc_users ALTER COLUMN email TYPE citext USING email::citext; ``` Now...
> I think it should work fine. Would be nice if you can contribute it back. I would If I could, but I hardly speak any Java / Vue. >...
definitely it's a server side issue. trying to initiate a session with the api. works: ```bash curl -X POST https://site.com/api/session -d "[email protected]&password=test" ``` Do not work: ```bash curl -X POST...
Seems this line is doing the comparison, and having a strict equal. https://github.com/traccar/traccar/blob/8dcc53aa3f19ef3a53f0eacc6cbb928b4b81be5b/src/main/java/org/traccar/api/security/LoginService.java#L122C1-L122C52
[equalsIgnoreCase](https://docs.oracle.com/javase/tutorial/java/data/comparestrings.html) ?