summaryrefslogtreecommitdiff
path: root/internal/storage
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2024-03-12 01:35:49 +1100
committerGitHub <noreply@github.com>2024-03-12 00:35:49 +1000
commit2b9281564070eac6aeafa35024f31e902c214c44 (patch)
tree8a7a5f0d0a715ca7ed5c70c67584c90e244ef9b4 /internal/storage
parentd377bee62fef13db04e55d66e9b640f790463c32 (diff)
build(oidc): use authelia maintained library (#6821)
Replaces github.com/ory/fosite with authelia.com/providers.oauth2 which is a hard fork of the former and has several major improvements. Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/storage')
-rw-r--r--internal/storage/provider.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/storage/provider.go b/internal/storage/provider.go
index 9ef7ef5aa..0c461ccdc 100644
--- a/internal/storage/provider.go
+++ b/internal/storage/provider.go
@@ -5,8 +5,8 @@ import (
"database/sql"
"time"
+ "authelia.com/provider/oauth2/storage"
"github.com/google/uuid"
- "github.com/ory/fosite/storage"
"github.com/authelia/authelia/v4/internal/model"
)