Franck Grenier
Franck Grenier
Hello Andrey, As an example of irrelevant markup duplication report, have a look at the clone below (pure HTML Bootstrap markup) : ```html
Hello, I fixed this problem with the below configuration : ```javascript { auth: { cookie: { options: { expires: 365, secure: process.env.APP_ENV !== 'local', }, }, strategies: { local: {...
Old one... Thanks for the update. Most important is that current releases are fixed. Feel free to close.
Hello, having the same (rare) issue on a Laravel 8 app and Composer 2.1.6. Fixed by removing [slevomat/coding-standard](https://github.com/slevomat/coding-standard/blob/ebe92fe0e976cd4d7ce4b554bce773c54d4685a4/composer.json#L19) dependency which became useless after moving our phpcs to PSR12.
What I did to avoid deployment failures due to timeouts : **catch the exception** ```php task('deploy:sentry:once', function(){ try { invoke('deploy:sentry'); } catch (\Exception $e) { info('Unable to push release or...
I need it too. How to setup "coverage treshold" with Cypress ?
I found the faulty code: https://github.com/nuxt-community/auth-module/blob/dev/src/schemes/oauth2.ts#L320 ```javascript logout(): void { if (this.options.endpoints.logout) { const opts = { client_id: this.options.clientId + '', logout_uri: this.logoutRedirectURI } const url = this.options.endpoints.logout + '?'...
More details on this problem. In the `reset()` method, `this.$auth.setUser(false);` is faulty : ```javascript reset() { this.$auth.setUser(false); //
Ok, looks like we found a solution. It's a "race condition" problem between 2 navigation instructions : - logout on OAuth server (`window.location.replace(url);`) - logout on Nuxt (`this.$auth.reset()`) Disabling the...