From ce7506d816df94314ee16692c006b3f7518b7f41 Mon Sep 17 00:00:00 2001 From: flashwave Date: Sat, 20 Jul 2024 01:32:32 +0000 Subject: [PATCH] User name & password auth is off the table actually because we have two factor auth! --- oatmeal.php | 1 - src/HomeRoutes.php | 1 - src/PasswordRoutes.php | 11 ----------- 3 files changed, 13 deletions(-) delete mode 100644 src/PasswordRoutes.php diff --git a/oatmeal.php b/oatmeal.php index c4ad18f..377aefe 100644 --- a/oatmeal.php +++ b/oatmeal.php @@ -27,5 +27,4 @@ $oatmeal->register(new HomeRoutes); $oatmeal->register(new AuthzCodeRoutes($oatmeal->getCSRFP())); $oatmeal->register(new RefreshTokenRoutes($oatmeal->getCSRFP())); $oatmeal->register(new ClientCredsRoutes); -$oatmeal->register(new PasswordRoutes); $oatmeal->register(new DeviceCodeRoutes); diff --git a/src/HomeRoutes.php b/src/HomeRoutes.php index f4da78b..8e143dd 100644 --- a/src/HomeRoutes.php +++ b/src/HomeRoutes.php @@ -24,7 +24,6 @@ final class HomeRoutes extends RouteHandler {
  • Authorisation code
  • Refresh token
  • Client credentials
  • -
  • Password
  • Device code
  • diff --git a/src/PasswordRoutes.php b/src/PasswordRoutes.php deleted file mode 100644 index d6da5cd..0000000 --- a/src/PasswordRoutes.php +++ /dev/null @@ -1,11 +0,0 @@ -