Added placeholder for lastName and role addition functionality

This commit is contained in:
Arseni
2026-01-14 17:06:33 +03:00
parent 62bc2644d4
commit a354a48213
17 changed files with 347 additions and 67 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,
);