Spencer Jones

Results 5 issues of Spencer Jones

Add `@WithAlias` decorator which allows arbitrary aliases to be attached to Controller methods and later retrieved in views and resolved to full route path. Resolves #3743. I'm not fully convinced...

type: feature :tada:
scope: core

Documents the @WithAlias() decorator and getUrl helper introduced in PR nestjs/nest#5117 ## PR Checklist Please check if your PR fulfills the following requirements: - [X] The commit message follows our...

content
status: blocked

### What does it do? Documents a new `strapi migrate` command, as well as `--no-migrate` option for `strapi start` command. See strapi/strapi#12143 for technical changes. ### Why is it needed?...

source: developer-docs
pr: new content
target: v4
status: pending product

The `runHook` method has no error handling: ```javascript if (err) { // Pass error, calling uncaught exception handlers return hook(err, stepTowardExit); } return hook(stepTowardExit); ``` If a hook throws, then...

When calling exit hook, like so: ```javascript exitHook(cb => { /* do something on exit */ }) ``` `cb` may not be a function depending on how the `async-exit-hook` routine...