Skip to content
Snippets Groups Projects
Commit 29f38821 authored by Kenneth Ezekiel's avatar Kenneth Ezekiel
Browse files

add: routing to add film

parent 85f6d69e
Branches
No related merge requests found
......@@ -4,6 +4,7 @@ namespace app;
use app\Router;
use app\base\BaseController;
use app\controllers\CreateFilmController;
use app\controllers\LoginController;
use app\controllers\MainController;
use app\controllers\ReviewController;
......@@ -32,5 +33,6 @@ class App
$this->router->addRoute('/review', ReviewController::class);
$this->router->addRoute('/logout', LoginController::class);
$this->router->addRoute('/register', RegisterController::class);
$this->router->addRoute('/add-film', CreateFilmController::class);
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment