Phyks (Lucas Verney)
9717bdc47b
Invalidate the store at logout, emptying cached items such as artists, albums and songs and then preventing them from quickly reappearing when reconnecting with the same or a different account. Closes #5.
7 lines
141 B
JavaScript
7 lines
141 B
JavaScript
export const INVALIDATE_STORE = "INVALIDATE_STORE";
|
|
export function invalidateStore() {
|
|
return {
|
|
type: INVALIDATE_STORE
|
|
};
|
|
}
|