From 4f47db9258e6c74aa967da7c7ca401ebac0fa044 Mon Sep 17 00:00:00 2001 From: Darko Gjorgjijoski Date: Fri, 3 Apr 2026 19:19:09 +0200 Subject: [PATCH] Move Mobile/AuthController to Company/Auth and remove Mobile namespace The Mobile namespace only contained an API auth controller (Sanctum token login/logout/check) that is not mobile-specific. Relocated to Company/Auth/AuthController alongside the other auth controllers. --- .../Controllers/Company/{Mobile => Auth}/AuthController.php | 2 +- routes/api.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename app/Http/Controllers/Company/{Mobile => Auth}/AuthController.php (95%) diff --git a/app/Http/Controllers/Company/Mobile/AuthController.php b/app/Http/Controllers/Company/Auth/AuthController.php similarity index 95% rename from app/Http/Controllers/Company/Mobile/AuthController.php rename to app/Http/Controllers/Company/Auth/AuthController.php index e72fcea6..c6ed8238 100644 --- a/app/Http/Controllers/Company/Mobile/AuthController.php +++ b/app/Http/Controllers/Company/Auth/AuthController.php @@ -1,6 +1,6 @@