mirror of
https://github.com/strapi/strapi.git
synced 2025-08-12 02:38:21 +00:00
15 lines
724 B
JavaScript
15 lines
724 B
JavaScript
![]() |
/*
|
||
|
* AppConstants
|
||
|
* Each action has a corresponding type, which the reducer knows and picks up on.
|
||
|
* To avoid weird typos between the reducer and the actions, we save them as
|
||
|
* constants here. We prefix them with 'yourplugin/YourComponent' so we avoid
|
||
|
* reducers accidentally picking up actions they shouldn't.
|
||
|
*
|
||
|
* Follow this format:
|
||
|
* export const YOUR_ACTION_CONSTANT = 'yourplugin/YourContainer/YOUR_ACTION_CONSTANT';
|
||
|
*/
|
||
|
|
||
|
export const LOAD_GENERAL_SETTINGS = 'settingsmanager/HomePage/LOAD_GENERAL_SETTINGS';
|
||
|
export const LOAD_GENERAL_SETTINGS_SUCCESS = 'settingsmanager/HomePage/LOAD_GENERAL_SETTINGS_SUCCESS';
|
||
|
export const LOAD_GENERAL_SETTINGS_ERROR = 'settingsmanager/HomePage/LOAD_GENERAL_SETTINGS_ERROR';
|