()
| 361 | } |
| 362 | |
| 363 | export function logout() { |
| 364 | return (dispatch) => { |
| 365 | cookie.remove("brewToken", { path: "/" }); |
| 366 | window.location.pathname = "/"; |
| 367 | dispatch({ type: LOGOUT_USER }); |
| 368 | }; |
| 369 | } |
| 370 | |
| 371 | export function sendFeedback({ name, feedback, email }) { |
| 372 | return (dispatch) => { |
no test coverage detected