Phyks (Lucas Verney)
d8a7d4f66a
Full rework of webplayer. Webplayer is back to its previous working state, and ready for further improvements.
13 lines
304 B
JavaScript
13 lines
304 B
JavaScript
/**
|
|
* These actions are actions acting directly on all the available stores.
|
|
*/
|
|
|
|
|
|
/** Define an action to invalidate all the stores, e.g. in case of logout. */
|
|
export const INVALIDATE_STORE = "INVALIDATE_STORE";
|
|
export function invalidateStore() {
|
|
return {
|
|
type: INVALIDATE_STORE,
|
|
};
|
|
}
|