mirror of
https://github.com/strapi/strapi.git
synced 2025-07-22 16:37:13 +00:00
15 lines
221 B
Handlebars
15 lines
221 B
Handlebars
/**
|
|
*
|
|
* {{name}} actions
|
|
*
|
|
*/
|
|
|
|
import { DEFAULT_ACTION } from './constants';
|
|
|
|
// eslint-disable-next-line import/prefer-default-export
|
|
export const defaultAction = () => {
|
|
return {
|
|
type: DEFAULT_ACTION,
|
|
};
|
|
};
|