fix radius change username

This commit is contained in:
Ibnu Maksum 2024-08-07 10:52:31 +07:00
parent 3c218d9ec9
commit e5ff8c5675
No known key found for this signature in database
GPG Key ID: 7FC82848810579E5
3 changed files with 3 additions and 3 deletions

View File

@ -92,7 +92,7 @@ class Radius
$this->customerDeactivate($customer['username'], true); $this->customerDeactivate($customer['username'], true);
} }
public function change_username($from, $to) public function change_username($plan, $from, $to)
{ {
$c = $this->getTableCustomer()->where_equal('username', $from)->findMany(); $c = $this->getTableCustomer()->where_equal('username', $from)->findMany();
if ($c) { if ($c) {

View File

@ -28,7 +28,7 @@ class RadiusRest {
} }
// customer change username // customer change username
public function change_username($from, $to) public function change_username($plan, $from, $to)
{ {
} }

View File

@ -34,7 +34,7 @@ class FileName {
} }
// customer change username // customer change username
public function change_username($from, $to) public function change_username($plan, $from, $to)
{ {
} }