mirror of
https://github.com/elyby/accounts.git
synced 2025-05-31 14:11:46 +05:30
Исправлен баг с ссылками в email с активацией
This commit is contained in:
@@ -12,7 +12,7 @@ class ForgotPasswordParams {
|
||||
public function __construct(string $username, string $code, string $link) {
|
||||
$this->username = $username;
|
||||
$this->code = $code;
|
||||
$this->link = $code;
|
||||
$this->link = $link;
|
||||
}
|
||||
|
||||
public function getUsername(): string {
|
||||
|
@@ -12,7 +12,7 @@ class RegistrationEmailParams {
|
||||
public function __construct(string $username, string $code, string $link) {
|
||||
$this->username = $username;
|
||||
$this->code = $code;
|
||||
$this->link = $code;
|
||||
$this->link = $link;
|
||||
}
|
||||
|
||||
public function getUsername(): string {
|
||||
|
Reference in New Issue
Block a user