removed email verification from blade temp until fixed

This commit is contained in:
omair saleh
2020-09-14 16:56:33 +08:00
parent 31f464dd89
commit 74e541990d
2 changed files with 0 additions and 2 deletions
@@ -52,7 +52,6 @@ abstract class AbstractControllerLogic
return $this->logic($request);
} catch (ErrorException $exception){
dd($exception);
return (new ApiResponseObject($this->getNotificationTitle().' failed', $exception->getMessage(), $exception->getCode()))->handler();
}
@@ -137,7 +137,6 @@ class CreateUserLogic extends AbstractControllerLogic
return $this->authenticateUserLogic->execute($request);
} catch (\Exception $exception){
dd($exception);
throw new ErrorException($exception->getMessage(), $exception->getCode());
}
}