From 823296e977fd3217c345cfc5c80823c39882cab0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Duli=C3=A7i?= Date: Sat, 12 Dec 2020 15:09:50 +0300 Subject: [PATCH] added auth events --- app/Events/Auth/Attempting.php | 28 ++++++++++++++++++++++++++++ app/Events/Auth/Authenticated.php | 28 ++++++++++++++++++++++++++++ app/Events/Auth/Failed.php | 28 ++++++++++++++++++++++++++++ 3 files changed, 84 insertions(+) create mode 100644 app/Events/Auth/Attempting.php create mode 100644 app/Events/Auth/Authenticated.php create mode 100644 app/Events/Auth/Failed.php diff --git a/app/Events/Auth/Attempting.php b/app/Events/Auth/Attempting.php new file mode 100644 index 000000000..39bbcf1ed --- /dev/null +++ b/app/Events/Auth/Attempting.php @@ -0,0 +1,28 @@ +alias = $alias; + $this->company_id = $company_id; + $this->protocol = $protocol; + } +} diff --git a/app/Events/Auth/Authenticated.php b/app/Events/Auth/Authenticated.php new file mode 100644 index 000000000..b526a1a16 --- /dev/null +++ b/app/Events/Auth/Authenticated.php @@ -0,0 +1,28 @@ +alias = $alias; + $this->company_id = $company_id; + $this->protocol = $protocol; + } +} diff --git a/app/Events/Auth/Failed.php b/app/Events/Auth/Failed.php new file mode 100644 index 000000000..ac002456b --- /dev/null +++ b/app/Events/Auth/Failed.php @@ -0,0 +1,28 @@ +alias = $alias; + $this->company_id = $company_id; + $this->protocol = $protocol; + } +}