mattermost-mobile/ios/MattermostShare/Config.swift
Harrison Healey 6e099d6a21 MM-15643 Send user to settings when passcode is required (#2836)
* MM-15643 Send user to settings when passcode is required

* Allow access to the managed config in the iOS extensions
2019-05-27 19:38:32 -04:00

5 lines
201 B
Swift

let configurationKey = "com.apple.configuration.managed"
func getManagedConfig() -> [String : Any] {
return UserDefaults.init(suiteName: APP_GROUP_ID)?.dictionary(forKey: configurationKey) ?? [:]
}