mirror of
https://github.com/standardebooks/web.git
synced 2025-07-13 18:11:52 -04:00
Add admin form to view and edit users
This commit is contained in:
parent
32607fb220
commit
8ad3291a35
35 changed files with 902 additions and 72 deletions
12
lib/Exceptions/SeeOtherException.php
Normal file
12
lib/Exceptions/SeeOtherException.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?
|
||||
namespace Exceptions;
|
||||
|
||||
class SeeOtherException extends AppException{
|
||||
public string $Url;
|
||||
|
||||
public function __construct(string $url){
|
||||
$this->Url = $url;
|
||||
|
||||
parent::__construct();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue