mirror of
https://github.com/yattee/yattee.git
synced 2024-12-14 14:20:32 +05:30
Remove unused file
This commit is contained in:
parent
a44a61b017
commit
21b04e21c4
@ -1,22 +0,0 @@
|
|||||||
import Alamofire
|
|
||||||
import Foundation
|
|
||||||
import SwiftyJSON
|
|
||||||
|
|
||||||
final class PlaylistsProvider: DataProvider {
|
|
||||||
@Published var playlists = [Playlist]()
|
|
||||||
|
|
||||||
let profile = Profile()
|
|
||||||
|
|
||||||
func load(successHandler: @escaping ([Playlist]) -> Void = { _ in }) {
|
|
||||||
let headers = HTTPHeaders([HTTPHeader(name: "Cookie", value: "SID=\(profile.sid)")])
|
|
||||||
DataProvider.request("auth/playlists", headers: headers).responseJSON { response in
|
|
||||||
switch response.result {
|
|
||||||
case let .success(value):
|
|
||||||
self.playlists = JSON(value).arrayValue.map { Playlist($0) }
|
|
||||||
successHandler(self.playlists)
|
|
||||||
case let .failure(error):
|
|
||||||
print(error)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user