Louis Charette
Louis Charette
Since [there's no easy way to do it currently](https://github.com/userfrosting/UserFrosting/blob/feature-migrator/app/sprinkles/core/tests/Integration/BakeryMigrateCommandTest.php#L75-L97), we should implement a facade [to run a Bakery command from anywhere in the framework](https://stackoverflow.com/a/31455977/445757), aka `Bakery::call('clear-cache');`
The current UF [cache package](https://github.com/userfrosting/cache) is overly complicated for nothing and inconsistent. For example, we create a new `RedisStore`, but [have to call `getInstance()`](https://github.com/userfrosting/cache/blob/master/src/ArrayStore.php#L76-L85) to actually get a [`RedisStore`](https://github.com/laravel/framework/blob/master/src/Illuminate/Cache/RedisStore.php). Instead...
Current configuration option let you define multiple database connection, but there no option to choose which one to use globally. This can be an issue with tests as they are...
When a user is not logged in, `currentUser` is `null`. It should be an instance of a user interface (#769). Guest user should also have permissions. In an app with...
Refactor login controller so sprinkle can perform post login actions by [registering Events](https://laravel.com/docs/5.6/authentication#events). See : https://chat.userfrosting.com/channel/support?msg=QDrXdCGTzJ5yyzaz2
Depend on #793 Users should be manageable by Bakery. This include basic CRUD operation as well as setting up the admin user during installation: - [ ] `User:list` - [...
Instead of bundling all locale in default UF install, other languages should be bundle in their own sprinkles. I believe new features coming in #850, this should work easily, make...
Since this error is the most common one new comers encounter : ``` An exception has been thrown during the rendering of a template ("The asset 'vendor/font-awesome/css/font-awesome.css' could not be...
I get this error : ``` Error: Command failed with ENOENT: deployer.phar deploy prod -f .github/deploy.php spawnSync deployer.phar ENOENT ``` More verbose error message would be welcomed. deploy.yml : ```...