Yormy

Results 21 issues of Yormy

On the importer I always get "Username or password incorrect" Any idea how to debug that, as the credentials are correct, the same as I use to login as root...

bug
importer

prevent ip block but add message to request. This is especially usefull when you want to keep your firewall intact, but still allow certain ips to pass. Just whitelisting bypasses...

I have a laravel and selenium container for testing, dusk works fine in the console Starting the dusk-dashboard works fine and it shows up When I press start in the...

Would be cool if I could add notes to the database entry why this ip was blocked/ whitelisted. or some indication who this IP belongs to

enhancement

Allow a defined set of settings per page. This makes large settings easier to manage in different pages

Allow getting of the config(key) when the settings(key) is not yet defined. Makes the app more transparant and all config() can be replaced by settings(). The code decides if the...

When calling isSubscribed on a user->with('NotificationSubscriptions) The following returns an n+1 problem, as you are requerying instead of using the loaded relations ``` return $this->notificationSubscriptions()->where('type', $type)->where('channel', $channel)->model($model)->first(); ```

### What happened? I follow this example: https://vee-validate.logaretm.com/v4/examples/custom-inputs/ This works nice and the field validates. Now when I place the exact component TextInput.vue inside my ui npm library that I...

📚 docs

Is it possible to create a blind index on a part of the field. Ie I want to be able to find all email on a certain domain, can I...

Allow for custom status code return Example: ``` if (data.password === 'Welkom1!') { return { data: 'oke', header: { status: 401, }, }; } ```