Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LogglyServiceKit/LogglyService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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")

Expand Down
4 changes: 2 additions & 2 deletions LogglyServiceKitUI/LogglyService+UI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ extension LogglyService: ServiceUI {

public static var image: UIImage? { nil }

public static func setupViewController(colorPalette: LoopUIColorPalette, pluginHost: PluginHost) -> SetupUIResult<ServiceViewController, ServiceUI>
public static func setupViewController(colorPalette: LoopUIColorPalette, pluginHost: PluginHost, allowDebugFeatures: Bool) -> SetupUIResult<ServiceViewController, ServiceUI>
{
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))
}
Expand Down