Add redirect for terms

This commit is contained in:
Hillel Coren 2017-03-21 11:47:46 +02:00
parent 41e48448a4
commit e40791c616

View File

@ -362,6 +362,9 @@ Route::get('/feed', function () {
Route::get('/comments/feed', function () {
return Redirect::to(NINJA_WEB_URL.'/comments/feed', 301);
});
Route::get('/terms', function () {
return Redirect::to(NINJA_WEB_URL.'/terms', 301);
});
/*
if (Utils::isNinjaDev())