paynym support added

This commit is contained in:
HolgerHatGarKeineNode
2023-03-17 11:49:11 +01:00
parent d9bf8a730a
commit 6979c554bc
20 changed files with 147 additions and 12 deletions

View File

@@ -21,6 +21,7 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
'lightning_address' => ['nullable', 'string'],
'lnurl' => ['nullable', 'string'],
'nostr' => ['nullable', 'string'],
'paynym' => ['nullable', 'string'],
'node_id' => ['nullable', 'string', 'max:66'],
'timezone' => ['required', 'string'],
'email' => [
@@ -44,6 +45,7 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
'lightning_address' => $input['lightning_address'],
'lnurl' => $input['lnurl'],
'nostr' => $input['nostr'],
'paynym' => $input['paynym'],
'node_id' => $input['node_id'],
'email' => $input['email'],
'timezone' => $input['timezone'],
@@ -65,6 +67,7 @@ class UpdateUserProfileInformation implements UpdatesUserProfileInformation
'lnurl' => $input['lnurl'],
'node_id' => $input['node_id'],
'nostr' => $input['nostr'],
'paynym' => $input['paynym'],
'email' => $input['email'],
'timezone' => $input['timezone'],
'email_verified_at' => null,