Mohsen Mollanoori

Results 23 comments of Mohsen Mollanoori

Is that possible to connect more than one client? I want to have my tablet and my cell phone connected at the same time and mix the audio if possible....

It seems that the problem comes from the `extFromBI` function in the `Argon.Cabal` module. It only looks at `defaultExtensions`, while the extensions in my cabal file are listed (for reasons...

I made a PR that considers the `otherExtensions` and `oldExtensions` for the library section of the cabal file. Why don't you consider the extensions in the executable, test, and benchmark...

I totally agree that the `-X` option is a helpful one. I think the correct way to handle cabal files is to parse the source folder path as well as...

Does the json input support nested objects?

It seems to me that the values in `hydra_oauth2_authentication_session` are used for two different reasons: 1. When doing a logout, this is use as id_token hint. It doesn't seem to...

Both `hydra_oauth2_authentication_request` and `hydra_oauth2_consent_request` have a `login_session_id` pointing to the session table. ![image](https://user-images.githubusercontent.com/10819757/121216257-f5f58280-c83d-11eb-9a6d-d66fa48ae59a.png)

It seems that `remember_for` is kept in the `hydra_oauth2_authentication_request_handled` table ![image](https://user-images.githubusercontent.com/10819757/121218596-1de5e580-c840-11eb-8c4d-8aa74d76d17e.png)

It seems that it cascades deletes: ``` CONSTRAINT `hydra_oauth2_authentication_request_login_session_id_fk` FOREIGN KEY (`login_session_id`) REFERENCES `hydra_oauth2_authentication_session` (`id`) ON DELETE CASCADE ```

I think we can delete the sessions with `id`s returned from the following query before we cleanup the other two tables (requests and consents). Otherwise, we loose the connection between...