What the linter reports:
Remove actionType from global actions.
Examples
- Incorrect
- Correct
api/actions/sendEmail.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Disallow actionType in global action options.
| Recommended | Strict | Auto-fixable | Scope |
|---|---|---|---|
| warn | error | true | Global action files |
Remove actionType from global actions.
export const options: ActionOptions = {
// actionType only applies to model actions, not global actions
actionType: "create",
returnType: true,
};
export const options: ActionOptions = {
// global actions do not support actionType
returnType: true,
};
Was this page helpful?