Robbo
Robbo
Laravel maps models to policies. So that is what is failing saying it doesn't find a policy so it will just return false. I think we can simply add `can`...
```php public function can($abilities, $arguments = []) { if (method_exists($this->object, 'can')) { return $this->object->can($abilities, $arguments); } } ``` This is a quick and dirty way to do it. I would...
I have just had `offline.js` working manually and configured it in `index.html`. But had that with bower which is pretty old so was looking for better solutions which is how...
> @beddueimpossibile when you say "Only debugging from Chrome is possible." What do you mean by this? Why is Chrome different than VSCode in this regard? Chrome uses the sourcemap...
Would this not still be useful because of the imports?
It's crazy there is no response of this PR at all. I guess they only do things when they get support requests from paying customers.
I've used a lot of source plugins that use graphql. This is the first one that does this. I don't know how it ever got released in this state...
Honestly the strapi plugin is so bad for so many different reasons it would probably be easier to fork the directus plugin and adapt the API.
These rules are generally following prettier it seems and what it would do is simply leave it as is. If a quote is in a string in prettier it uses...
I did a lot of changes using a postcss plugin to get this working. But then the error came back up again, and then I just changed the `app.css` to...