mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 05:32:18 +00:00
- Jellyfin scrobble working - Returns scrobbles via API for authed users /api/v1/user/{uuid}/scrobble - Add redis handler + funcs - Move middleware to pass in uuid as needed
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
import { SET_MESSAGE, CLEAR_MESSAGE } from "./types";
|
|
|
|
export const setMessage = (message) => ({
|
|
type: SET_MESSAGE,
|
|
payload: message,
|
|
});
|
|
|
|
export const clearMessage = () => ({
|
|
type: CLEAR_MESSAGE,
|
|
});
|