mirror of
https://github.com/getAlby/lndhub.go.git
synced 2025-12-20 14:14:47 +01:00
Soft delete users (#476)
* Update Makefile * Optionally load test DB from env variable * Add option to soft-delete a user This allows users to be marked as deleted. An additional middleware checks if a user is deleted or deactivated and rejects requests for those as StatusUnauthorized. note: the middelware adds an additional DB query to load the user.
This commit is contained in:
@@ -19,6 +19,7 @@ type User struct {
|
||||
Invoices []*Invoice `bun:"rel:has-many,join:id=user_id"`
|
||||
Accounts []*Account `bun:"rel:has-many,join:id=user_id"`
|
||||
Deactivated bool
|
||||
Deleted bool
|
||||
}
|
||||
|
||||
func (u *User) BeforeAppendModel(ctx context.Context, query bun.Query) error {
|
||||
|
||||
Reference in New Issue
Block a user