diff --git a/LogglyServiceKit/LogglyService.swift b/LogglyServiceKit/LogglyService.swift index 8bacf07..852c6b1 100644 --- a/LogglyServiceKit/LogglyService.swift +++ b/LogglyServiceKit/LogglyService.swift @@ -11,7 +11,7 @@ import LoopKit public final class LogglyService: Service { - public static let pluginIdentifier = "LogglyService" + public let pluginIdentifier = "LogglyService" public static let localizedTitle = LocalizedString("Loggly", comment: "The title of the Loggly service") diff --git a/LogglyServiceKitUI/LogglyService+UI.swift b/LogglyServiceKitUI/LogglyService+UI.swift index 698dbc4..f41fa0f 100644 --- a/LogglyServiceKitUI/LogglyService+UI.swift +++ b/LogglyServiceKitUI/LogglyService+UI.swift @@ -16,12 +16,12 @@ extension LogglyService: ServiceUI { public static var image: UIImage? { nil } - public static func setupViewController(colorPalette: LoopUIColorPalette, pluginHost: PluginHost) -> SetupUIResult + public static func setupViewController(colorPalette: LoopUIColorPalette, pluginHost: PluginHost, allowDebugFeatures: Bool) -> SetupUIResult { return .userInteractionRequired(ServiceNavigationController(rootViewController: LogglyServiceTableViewController(service: LogglyService(), for: .create))) } - public func settingsViewController(colorPalette: LoopUIColorPalette) -> ServiceViewController + public func settingsViewController(colorPalette: LoopUIColorPalette, allowDebugFeatures: Bool) -> ServiceViewController { return ServiceNavigationController(rootViewController: LogglyServiceTableViewController(service: self, for: .update)) }