Skip to content

Commit b425760

Browse files
7.2.1 (#489)
* fix: support ukraine * Clean up & upgrading php + laravel (#464) * fix: cleaning the repository method * Fix styling * fix: wip * fix: wip * fix: wip * fix: wip * fix: wip * fix: wip * feat: drop laravel 8 support * fix: wip * Fix styling * fix: wip * Fix styling * fix: refactoring matches * fix: wip * Fix styling * fix: wip * fix: wip * Larastan (#461) * fix: support ukraine * adding larastan * wip * Fix styling * Fix styling * fix: wip * Fix styling * fix: wip * fix: php 8.1 * fix: cover windows tests Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: delete unused Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: route method * Fix styling * fix: roadmap * fix: Make sure any action isn't permitted unless the Model Policy exists * fix: wip * Fix styling * fix: Block requests without policy (#466) * fix: Block requests without policy * Fix styling * fix: wip * fix: wip * fix: wip * fix: tests * fix: config Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: Adding package tools and fixing related bug (#467) * Tests 2 (#468) * fix: use route helper * Fix styling * fix: tests refactoring * Fix styling * fix: route key * fix: wip * Fix styling * fix: phpunit config * fix: coverage * fix: factories * Fix styling * fix: wip * fix: wip * Fix styling Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: wip * fix: wip * fix: wip * Custom logs (#469) * fix: assertables & prototypes * Fix styling * fix: observer for logs * Fix styling * fix: wip * Fix styling * fix: custom logs * fix: wip * Fix styling * fix: sideeffect * Fix styling * fix: wip Co-authored-by: binaryk <binaryk@users.noreply.github.com> * With eager loading (#470) * fix: adding with for the show * fix: cleanup responses using helper * Fix styling Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: List restify routes through artisan command (#471) * fix: List restify routes through artisan command * Fix styling * fix: wip * fix: tests Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: wip * fix: helpers for action logs * Fix styling * fix: fix eager fields without key in include * fix: wip * fix: custom serializer (#472) * fix: custom serializer * Fix styling * fix: serializer docs Co-authored-by: binaryk <binaryk@users.noreply.github.com> * Fix styling * Relationships nested (#473) * fix: eager loading nested relationships * Fix styling * fix: wip * fix: eager loading nested relationships * fix: wip Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: don't check related if no query (#475) * Fix after bulk method calls (#476) * fix after bulk method calls * fix number of calls * revert returns * Fix styling * Keep model attributes for deletedBulk method. (#477) * fix after bulk method calls * fix number of calls * revert returns * keep model attributes * fix: fix psalm and tests (#478) * fix: fix psalm and tests * fix: wip * fix: wip * Performance (#474) * fix: catch issues * Fix styling * fix: ensure eager loading works * Fix styling * fix: performance improvements * Fix styling * fix: related performance improvements * Fix styling * fix: drop cast support * Fix styling * fix: optimize current repository search Co-authored-by: binaryk <binaryk@users.noreply.github.com> * Recursive related (#479) * fix: collection * Fix styling * fix: tests * fix: wip * Fix styling * fix: recursive * Fix styling * fix: recursive related including columns * fix: typo * Fix styling Co-authored-by: binaryk <binaryk@users.noreply.github.com> * Feedback related (#480) * fix: feedback from related pr * Fix styling * fix: wip * fix: wip * Fix styling Co-authored-by: binaryk <binaryk@users.noreply.github.com> * Dynamic meta (#481) * fix: configurable meta render * Fix styling Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: formatting (#482) * Docs 7x (#483) * fix: repository generator improvements & sanctum middleware scaffolding * Fix styling Co-authored-by: binaryk <binaryk@users.noreply.github.com> * Docs 7x (#484) * fix: repository generator improvements & sanctum middleware scaffolding * feat: [7.x] Eager fields recognize pattern of the key to retrieve repository. * Fix styling * fix: updating docs for v7 * fix: merge * Fix styling * fix: wip * fix: wip * Fix styling Co-authored-by: binaryk <binaryk@users.noreply.github.com> * Last formatting (#485) * fix: wip * fix: wip * fix: [7.x] Load routes from the application service provider so the d… (#487) * fix: [7.x] Load routes from the application service provider so the developer could disable it. * Fix styling * fix: wip Co-authored-by: binaryk <binaryk@users.noreply.github.com> * fix: [7.x] Loading routes before middleware stack. * fix: wip * Fix styling Co-authored-by: binaryk <binaryk@users.noreply.github.com> Co-authored-by: Daniel Bănciulea <daniel.banciulea@systeady.com>
1 parent 139003f commit b425760

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/RestifyApplicationServiceProvider.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
use Binaryk\LaravelRestify\Http\Middleware\RestifyInjector;
1212
use Illuminate\Contracts\Http\Kernel;
1313
use Illuminate\Filesystem\Filesystem;
14-
use Illuminate\Support\Facades\App;
1514
use Illuminate\Support\Facades\Gate;
1615
use Illuminate\Support\Facades\Route;
1716
use Illuminate\Support\ServiceProvider;
@@ -120,8 +119,6 @@ protected function routes(): void
120119

121120
$kernel->pushMiddleware(RestifyInjector::class);
122121

123-
if (App::runningInConsole()) {
124-
app(RoutesBoot::class)->boot();
125-
}
122+
app(RoutesBoot::class)->boot();
126123
}
127124
}

0 commit comments

Comments
 (0)