diff --git a/Blacklight/http/API.php b/app/Http/Controllers/Api/API.php old mode 100755 new mode 100644 similarity index 99% rename from Blacklight/http/API.php rename to app/Http/Controllers/Api/API.php index b1bfacb5d..b603f37c6 --- a/Blacklight/http/API.php +++ b/app/Http/Controllers/Api/API.php @@ -20,7 +20,7 @@ * @copyright 2016 nZEDb */ -namespace Blacklight\http; +namespace App\Http\Controllers\Api; use App\Models\AudioData; use App\Models\Category; diff --git a/app/Http/Controllers/Api/ApiController.php b/app/Http/Controllers/Api/ApiController.php index 2fc6a82f9..ab80dff26 100644 --- a/app/Http/Controllers/Api/ApiController.php +++ b/app/Http/Controllers/Api/ApiController.php @@ -9,7 +9,7 @@ use App\Models\ReleaseNfo; use App\Models\User; use App\Models\UserDownload; use App\Models\UserRequest; -use Blacklight\http\API; +use App\Http\Controllers\Api\API; use Blacklight\Releases; use Blacklight\utility\Utility; use Illuminate\Http\Request; diff --git a/app/Http/Controllers/Api/ApiV2Controller.php b/app/Http/Controllers/Api/ApiV2Controller.php index 01afd3673..3ace3776c 100644 --- a/app/Http/Controllers/Api/ApiV2Controller.php +++ b/app/Http/Controllers/Api/ApiV2Controller.php @@ -13,7 +13,7 @@ use App\Models\UserRequest; use App\Transformers\ApiTransformer; use App\Transformers\CategoryTransformer; use App\Transformers\DetailsTransformer; -use Blacklight\http\API; +use App\Http\Controllers\Api\API; use Blacklight\Releases; use Blacklight\utility\Utility; use Illuminate\Http\Request; diff --git a/Blacklight/http/Capabilities.php b/app/Http/Controllers/Api/Capabilities.php old mode 100755 new mode 100644 similarity index 99% rename from Blacklight/http/Capabilities.php rename to app/Http/Controllers/Api/Capabilities.php index bd8af48c1..3317f66fd --- a/Blacklight/http/Capabilities.php +++ b/app/Http/Controllers/Api/Capabilities.php @@ -20,7 +20,7 @@ * @copyright 2016 nZEDb */ -namespace Blacklight\http; +namespace App\Http\Controllers\Api; use App\Models\Category; use App\Models\Settings; diff --git a/Blacklight/http/RSS.php b/app/Http/Controllers/Api/RSS.php old mode 100755 new mode 100644 similarity index 99% rename from Blacklight/http/RSS.php rename to app/Http/Controllers/Api/RSS.php index 60fccf631..0dc654199 --- a/Blacklight/http/RSS.php +++ b/app/Http/Controllers/Api/RSS.php @@ -1,6 +1,6 @@