Indrashish Ghosh

Results 4 issues of Indrashish Ghosh

Changed the `complete` method to `success`

I am talking about this library specifically - https://github.com/assemble/handlebars-helpers I tried something like this, could not get it to work. ``` app.engine('.hbs', exphbs({ helpers: require('handlebars-helpers'); })); ``` Alternatively how can...

## Package version **4.1.0** ## Node.js and npm version Node - **11.14.0** NPM - **6.9.0** ## Sample Code (to reproduce the issue) These work:- ``` test('test name', async (ctx) =>...

Type: Bug
Semver: Major
Status: Accepted
Priority: High

I added a `ScopeRequestByUser` middleware like so ```php public function handle($request, Closure $next) { if ($request->ajax() || $request->wantsJson()) { Landlord::addTenant('user_id', Auth::guard('api')->id()); } return $next($request); } ``` Now this works perfectly...