From ce1f085de9b2bd846ea15f74c5d92ae91bd86bbf Mon Sep 17 00:00:00 2001 From: Hasby Maulana Date: Thu, 26 Oct 2023 11:28:08 +0700 Subject: [PATCH] Update InstallCommand.php --- src/Console/Commands/InstallCommand.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Console/Commands/InstallCommand.php b/src/Console/Commands/InstallCommand.php index 5fe7a03..d6a6f84 100644 --- a/src/Console/Commands/InstallCommand.php +++ b/src/Console/Commands/InstallCommand.php @@ -52,9 +52,7 @@ protected function installStack() { (new Filesystem)->ensureDirectoryExists(base_path("routes/user")); (new Filesystem)->ensureDirectoryExists(base_path("routes/admin")); - (new Filesystem)->copy(__DIR__."/../../../stubs/routes/user/acl.php", base_path("routes/user/acl.php")); (new Filesystem)->copy(__DIR__."/../../../stubs/routes/admin/acl.php", base_path("routes/admin/acl.php")); - $this->helper->putRoute("api.php", "user/acl.php"); $this->helper->putRoute("api.php", "admin/acl.php"); (new Filesystem)->ensureDirectoryExists(app_path("Http/Controllers/ACL"));