reset progress if album is finished
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Artem Anufrij
2023-09-19 15:00:48 +02:00
parent 159935d949
commit 62091a02a3
3 changed files with 14 additions and 5 deletions

View File

@@ -84,7 +84,8 @@ export default {
if (context.state._id == -1) {
return;
}
axios.post(context.rootGetters.server + "/api/user/progress", item, context.rootGetters.headers);
axios
.post(context.rootGetters.server + "/api/user/progress", item, context.rootGetters.headers);
},
getProgress(context, parent) {
if (context.state._id == -1) {
@@ -97,6 +98,13 @@ export default {
parent.progress = res.data;
});
},
resetProgress(context, item) {
if (context.state._id == -1) {
return;
}
axios
.delete(context.rootGetters.server + "/api/user/progress/" + item.album_id, context.rootGetters.headers);
},
savePlayerSettings(context) {
let body = {
repeat: context.rootGetters["player/repeatType"],