1234567891011121314151617181920212223242526272829 |
- //
- // NCTrash.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 02/10/2018.
- // Copyright © 2018 Marino Faggiana. All rights reserved.
- //
- import Foundation
- class NCTrash: UICollectionViewController {
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
- var path = ""
- override func viewDidLoad() {
- super.viewDidLoad()
- let ocNetworking = OCnetworking.init(delegate: self, metadataNet: nil, withUser: appDelegate.activeUser, withUserID: appDelegate.activeUserID, withPassword: appDelegate.activePassword, withUrl: appDelegate.activeUrl)
-
- ocNetworking?.listingTrash(appDelegate.activeUrl, path: path, account: appDelegate.activeAccount, success: { (item) in
-
- }, failure: { (message, errorCode) in
-
- })
- }
-
-
- }
|