Merge pull request #786 from jbeker/freshrss_credential_update_GH-775

Implement Credential Update for FreshRSS (Issue 775)
This commit is contained in:
Maurice Parker
2019-06-23 13:30:20 -05:00
committed by GitHub

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
}