master
adb-sh 1 year ago
parent a48d6a8fc0
commit 6557c2991d

@ -16,9 +16,8 @@ export const applyUserRoutes = (router) => {
res.send({ currentlyPlaying });
});
router.get('/me/role', (req, res) => {
res.status(200);
res.send({ role: res.locals.user?.role });
router.get('/me', async (req, res) => {
const user = await getUserResource(res.locals.user);
});
};

@ -6,6 +6,7 @@ export const syncAllSessions = async () => {
};
export const syncSession = async sessionStore => {
if (sessionStore.clients.length === 0) return;
const hostStore = await UserStore.findById(sessionStore.host._id);
const host = await hostStore.spotify.local;
const hostCP = await host.player.getCurrentlyPlaying("track");

@ -1 +1 @@
Subproject commit 16509550450f792ed3c7b45385a57a0270a78d6c
Subproject commit e5f9f825cb0ef1fc4451867aac75257c820b1bda
Loading…
Cancel
Save