Update:iOS using new sync local sessions endpoint

- remove local session sync function call on starting playback
- Add User model and getCurrentUser api function
This commit is contained in:
advplyr
2023-11-12 13:19:36 -06:00
parent ff5a1bb09f
commit 36be91962c
12 changed files with 128 additions and 97 deletions
-4
View File
@@ -194,10 +194,6 @@ class AbsDatabaseWeb extends WebPlugin {
return null
}
async syncLocalMediaProgressWithServer() {
return null
}
async syncLocalSessionsWithServer() {
return null
}
-4
View File
@@ -70,10 +70,6 @@ class DbService {
return AbsDatabase.removeLocalMediaProgress({ localMediaProgressId })
}
syncLocalMediaProgressWithServer() {
return AbsDatabase.syncLocalMediaProgressWithServer()
}
syncLocalSessionsWithServer() {
return AbsDatabase.syncLocalSessionsWithServer()
}