Implement Credential Update for FreshRSS

This commit is contained in:
Jeremy Beker 2019-06-23 09:31:04 -04:00
parent 0a2f96a4e9
commit 3fb222f5c4
No known key found for this signature in database
GPG Key ID: CD5EE767A4A34FD0

View File

@ -60,6 +60,12 @@ final class AccountsDetailViewController: NSViewController, NSTextFieldDelegate
accountsFeedbinWindowController.account = account
accountsFeedbinWindowController.runSheetOnWindow(self.view.window!)
accountsWindowController = accountsFeedbinWindowController
case .freshRSS:
let accountsFreshRSSWindowController = AccountsReaderAPIWindowController()
accountsFreshRSSWindowController.accountType = account.type
accountsFreshRSSWindowController.account = account
accountsFreshRSSWindowController.runSheetOnWindow(self.view.window!)
accountsWindowController = accountsFreshRSSWindowController
default:
break
}