Added placeholder for lastName and role addition functionality

Try to rebase
This commit is contained in:
Arseni
2026-01-14 17:06:33 +03:00
parent 6bc5130883
commit 9319108b26
17 changed files with 348 additions and 64 deletions

View File

@@ -30,6 +30,7 @@ class InvitationsProvider extends GenericProvider<Invitation> {
required String roleRef,
required String inviterRef,
String name = '',
String lastName = '',
String comment = '',
DateTime? expiresAt,
}) async {
@@ -39,6 +40,7 @@ class InvitationsProvider extends GenericProvider<Invitation> {
inviterRef: inviterRef,
email: email,
name: name,
lastName: lastName,
comment: comment,
expiresAt: expiresAt,
);