Files
letro-ios/ElementX/Sources/Services/UserSessionStore/FileManager.swift
Doug 5a1b9463bc #40: Use the Rust AuthenticationService.
* Update SDK package to 1.0.12-alpha.
* Use an app group for storage and stop stripping the http from the homeserver when configuring the service.
* Rename access token to restore token.
* Remove matrix.org server description inline with latest FTUE changes.
2022-07-27 10:57:16 +01:00

17 lines
369 B
Swift

//
// FileManager.swift
// ElementX
//
// Created by Doug on 19/07/2022.
// Copyright © 2022 Element. All rights reserved.
//
import Foundation
extension FileManager {
/// The URL of the primary app group container.
var appGroupContainerURL: URL? {
containerURL(forSecurityApplicationGroupIdentifier: ElementInfoPlist.appGroupIdentifier)
}
}