summaryrefslogtreecommitdiff
path: root/internal/authentication/user_provider.go
diff options
context:
space:
mode:
authorJames Elliott <james-d-elliott@users.noreply.github.com>2025-03-09 01:53:44 +1100
committerGitHub <noreply@github.com>2025-03-09 01:53:44 +1100
commit9241731a4dd5592b4a02b5352c903b4d06b6f4ab (patch)
tree5184b98751912a261ff70fd8721b9cd4f1c98f1e /internal/authentication/user_provider.go
parentbbcb38ab9ff35e69d5d52a71ab56346749f5e8b1 (diff)
feat(embed): make authelia embedable (#8841)
This adds a highly experimental option for developers looking to embed Authelia within another go binary. Closes #5803 Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'internal/authentication/user_provider.go')
-rw-r--r--internal/authentication/user_provider.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/authentication/user_provider.go b/internal/authentication/user_provider.go
index 9d56e65cd..b1addebc9 100644
--- a/internal/authentication/user_provider.go
+++ b/internal/authentication/user_provider.go
@@ -22,5 +22,5 @@ type UserProvider interface {
// ChangePassword is used to change a user's password but requires their old password to be successfully verified.
ChangePassword(username string, oldPassword string, newPassword string) (err error)
- Shutdown() (err error)
+ Close() (err error)
}