feat: allow users to delete/create own profile

This commit is contained in:
2022-04-08 19:40:35 +01:00
parent 85962de188
commit dcbff0f52e
7 changed files with 342 additions and 142 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Exceptions;
use Exception;
class ProfileAlreadyExistsException extends Exception
{
//
}

View File

@@ -0,0 +1,10 @@
<?php
namespace App\Exceptions;
use Exception;
class ProfileCreationFailedException extends Exception
{
//
}