Add initial implementation of grants

This commit is contained in:
Tom Wiesing 2023-01-02 15:12:06 +01:00
parent b8f1281f78
commit 69b6579de7
No known key found for this signature in database
15 changed files with 308 additions and 73 deletions

View file

@ -15,7 +15,8 @@ import (
type Auth struct {
component.Base
Dependencies struct {
SQL *sql.SQL
SQL *sql.SQL
UserDeleteHooks []component.UserDeleteHook
}
store lazy.Lazy[sessions.Store]