feat(model): adapted user model username to libretime user table login

This commit is contained in:
Michael 2025-02-06 13:34:35 +01:00
parent b30f44b255
commit b7ff3389cd

View file

@ -53,6 +53,6 @@ class User extends Authenticatable
public function username()
{
return 'username'; // Specify the login column
return $this->login; // Specify the login column
}
}