Skip to content

Commit

Permalink
Make CI happy
Browse files Browse the repository at this point in the history
  • Loading branch information
9p4 committed May 13, 2024
1 parent 618bcdb commit 42fba86
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SSO-Auth/Views/SSOViewsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public SSOViewsController(ILogger<SSOViewsController> logger, ISessionManager se
_sessionManager = sessionManager;
_userManager = userManager;
_authContext = authContext;
// _logger = logger;
// _logger.LogInformation("SSO Views Controller initialized");
_logger = logger;
_logger.LogInformation("SSO Views Controller initialized");
}

private ActionResult ServeView(string viewName)
Expand Down Expand Up @@ -66,7 +66,7 @@ private ActionResult ServeView(string viewName)

if (stream == null)
{
// _logger.LogError("Failed to get resource {Resource}", view.EmbeddedResourcePath);
_logger.LogError("Failed to get resource {Resource}", view.EmbeddedResourcePath);
return NotFound();
}
#nullable disable
Expand Down
3 changes: 3 additions & 0 deletions providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ FolderRoleMapping: []
Authelia is simple to configure, and RBAC is straightforward.
### Authelia's Config
Below is the `identity_providers` section of an Authelia config:

### Authelia v4.38 and above

```yaml
identity_providers:
oidc:
Expand All @@ -58,6 +60,7 @@ identity_providers:
```

### Authelia v4.37 and below

```yaml
identity_providers:
oidc:
Expand Down

0 comments on commit 42fba86

Please sign in to comment.