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
commit 6fada650da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

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
}