mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-18 05:42:41 +09:00
Update to laravel 7
This commit is contained in:
@@ -35,7 +35,7 @@ class PublicKeys extends AbstractApi
|
||||
*/
|
||||
public function show($id)
|
||||
{
|
||||
return $this->get('/user/keys/'.rawurlencode($id));
|
||||
return $this->get('/user/keys/'.$id);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -69,6 +69,6 @@ class PublicKeys extends AbstractApi
|
||||
*/
|
||||
public function remove($id)
|
||||
{
|
||||
return $this->delete('/user/keys/'.rawurlencode($id));
|
||||
return $this->delete('/user/keys/'.$id);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user