Skip to content

Commit

Permalink
Rename controller.
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>
  • Loading branch information
crynobone committed May 28, 2019
1 parent 67cc95b commit 837dc08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;

class VerifyController extends Controller
class VerifyAccessController extends Controller
{
/**
* Verify remote access request.
Expand Down
2 changes: 1 addition & 1 deletion src/Manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public function route(string $prefix, array $middlewares = ['signed', 'web']): v
$router = $this->app['router'];

$router->prefix($prefix)->group(function (Router $router) use ($middlewares) {
$router->get('{secret}', Http\VerifyController::class)
$router->get('{secret}', Http\VerifyAccessController::class)
->name('remote-control.verify')
->middleware($middlewares);
});
Expand Down

0 comments on commit 837dc08

Please sign in to comment.