Fix multiline function call style violations
Expand mixed inline/multiline function calls so each argument is on its own line, matching the one-argument-per-line rule. Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
@@ -132,17 +132,21 @@ func NewService(
|
||||
}
|
||||
svc.SAMLService = samlService
|
||||
|
||||
svc.SCIMService = scim.NewService(svc.pg, cfg.Logger.Named("scim"), scim.ServiceConfig{
|
||||
TracerProvider: cfg.TracerProvider,
|
||||
Registerer: cfg.Registerer,
|
||||
EncryptionKey: cfg.EncryptionKey,
|
||||
ConnectorRegistry: cfg.ConnectorRegistry,
|
||||
BridgeRunner: scim.BridgeRunnerConfig{
|
||||
Interval: cfg.SCIMBridgeSyncInterval,
|
||||
PollInterval: cfg.SCIMBridgePollInterval,
|
||||
BaseURL: cfg.BaseURL,
|
||||
svc.SCIMService = scim.NewService(
|
||||
svc.pg,
|
||||
cfg.Logger.Named("scim"),
|
||||
scim.ServiceConfig{
|
||||
TracerProvider: cfg.TracerProvider,
|
||||
Registerer: cfg.Registerer,
|
||||
EncryptionKey: cfg.EncryptionKey,
|
||||
ConnectorRegistry: cfg.ConnectorRegistry,
|
||||
BridgeRunner: scim.BridgeRunnerConfig{
|
||||
Interval: cfg.SCIMBridgeSyncInterval,
|
||||
PollInterval: cfg.SCIMBridgePollInterval,
|
||||
BaseURL: cfg.BaseURL,
|
||||
},
|
||||
},
|
||||
})
|
||||
)
|
||||
|
||||
svc.samlDomainVerifier = NewSAMLDomainVerifier(
|
||||
pgClient,
|
||||
|
||||
Reference in New Issue
Block a user