Merge branch 'master' into subscribe_to_channel_and_playlist

This commit is contained in:
Tzahi12345
2020-03-05 22:57:57 -05:00
committed by GitHub
12 changed files with 331 additions and 6 deletions

View File

@@ -92,6 +92,10 @@ export class PostsService {
}
}
setConfig(config) {
return this.http.post(this.path + 'setConfig', {new_config_file: config});
}
deleteFile(name: string, isAudio: boolean) {
if (isAudio) {
return this.http.post(this.path + 'deleteMp3', {name: name});