1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Add back legacy routes

This commit is contained in:
Hillel Coren 2016-04-11 11:34:02 +03:00
parent 245efeee2f
commit b296c55911

View File

@ -278,7 +278,6 @@ Route::group(['middleware' => 'api', 'prefix' => 'api/v1'], function()
});
// Redirects for legacy links
/*
Route::get('/rocksteady', function() {
return Redirect::to(NINJA_WEB_URL, 301);
});
@ -306,7 +305,7 @@ Route::get('/compare-online-invoicing{sites?}', function() {
Route::get('/forgot_password', function() {
return Redirect::to(NINJA_APP_URL.'/forgot', 301);
});
*/
if (!defined('CONTACT_EMAIL')) {
define('CONTACT_EMAIL', Config::get('mail.from.address'));