Indrashish Ghosh
Indrashish Ghosh
@shahruz We would need some sort of a way to communicate the install and uninstall counts for each plugin with the server. I was thinking of a 'POST'/'PUT' request to...
@shahruz That sounds good. Question arises how do we keep it anonymous while keeping the code open sourced?
@dschniepp Not really, I just ended up using it in the Global Middleware Stack. Hoping this issue can be resolved soon.
I replaced the call to `Landlord::addTenant('user_id', Auth::guard('api')->id());` by `Log::info(Auth::guard('api')->id());` in the `ScopeRequestByUser` middleware and it successfully logs the user id. This works _regardless_ of weather the middleware is called in...
Hmm...Route Model Binding doesn't seem to be the issue. Within my routes file, I have this:- ```php Route::get('/projects', 'ProjectController@all'); ``` and the corresponding method in the controller:- ```php public function...
As a project we decided to take a stance on what a accessible modal should be. Disabling modal close on `esc` goes against this very belief. This is most likely...