- Only allow ItemType:Audio from Jellyfin
- Fix NavBar for Mobile (Ugly hack but.. TO REWORK)
- Fixed registration page issues
- Add functionality to pull recent scrobbles to Dashboard
- Add MX record lookup validation for emails
- Add username validation for a-Z 0-9 _ and .
- Dashboard shows basic table of last 500 scrobbles.
This commit is contained in:
Daniel Mason 2021-03-30 21:36:28 +13:00
parent 7ae9a0cd66
commit 2f8aa2e502
Signed by: idanoo
GPG key ID: 387387CDBC02F132
31 changed files with 425 additions and 171 deletions

View file

@ -8,3 +8,11 @@ export const getStats = () => {
);
};
export const getRecentScrobbles = (id) => {
return ApiService.getRecentScrobbles(id).then(
(data) => {
return data.data;
}
);
};