Added groups - missing user management. Fixed several issues.

This commit is contained in:
Tom
2025-03-18 12:55:00 +00:00
parent 2f88840ef6
commit 74b282ccfd
77 changed files with 1771 additions and 377 deletions

View File

@ -0,0 +1,6 @@
export default interface RedeemableAction {
user_id: string;
name: string;
type: string;
data: any;
}