Debrid services can change their APIs at any time which negatively impacts user experiences on Ferrite. Add the following: - Ability for a user to add a manually generated API key only showing the last 4 characters for security purposes. - Make ephemeral auth sessions toggle-able. ASWebAuthenticationView does not automatically clear on toggle change. - Add the savedLinks endpoint for AllDebrid so users can access their downloads and magnets. - Add a links section to AD's cloud view. Signed-off-by: kingbri <bdashore3@proton.me>
13 lines
195 B
Swift
13 lines
195 B
Swift
//
|
|
// FerriteKeychain.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 4/30/23.
|
|
//
|
|
|
|
import Foundation
|
|
import KeychainSwift
|
|
|
|
class FerriteKeychain {
|
|
static let shared = KeychainSwift()
|
|
}
|