mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-13 00:33:28 +01:00
Files
18d251c3643847252a41fdc9bd2bd9c15ad0d796
20 lines
386 B
Swift
20 lines
386 B
Swift
//
|
|||
// Source+Trusted.swift
|
|||
// SideStore
|
|||
//
|
|||
// Created by Fabian Thies on 04.02.23.
|
|||
// Copyright © 2023 SideStore. All rights reserved.
|
|||
//
|
|||
|
|||
import AltStoreCore
|
|||
|
|||
extension Source {
|
|||
var isOfficial: Bool {
|
|||
self.identifier == Source.altStoreIdentifier
|
|||
}
|
|||
|
|||
var isTrusted: Bool {
|
|||
UserDefaults.shared.trustedSourceIDs?.contains(self.identifier) ?? false
|
|||
}
|
|||
}
|