From 1355bd4ecc15e5fcf97429614954ba07bb910989 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Thu, 8 Oct 2015 12:49:26 +0300 Subject: [PATCH] Updated version --- app/Http/routes.php | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/app/Http/routes.php b/app/Http/routes.php index 2d09b37d2c00..9f1e569fb768 100644 --- a/app/Http/routes.php +++ b/app/Http/routes.php @@ -62,6 +62,8 @@ Route::get('claim_license', 'PaymentController@claim_license'); Route::post('signup/validate', 'AccountController@checkEmail'); Route::post('signup/submit', 'AccountController@submitSignup'); +Route::get('auth/{provider}', 'Auth\AuthController@authLogin'); + // Laravel auth routes /* @@ -383,7 +385,7 @@ if (!defined('CONTACT_EMAIL')) { define('NINJA_GATEWAY_CONFIG', 'NINJA_GATEWAY_CONFIG'); define('NINJA_WEB_URL', 'https://www.invoiceninja.com'); define('NINJA_APP_URL', 'https://app.invoiceninja.com'); - define('NINJA_VERSION', '2.4.0'); + define('NINJA_VERSION', '2.4.2'); define('NINJA_DATE', '2000-01-01'); define('NINJA_FROM_EMAIL', 'maildelivery@invoiceninja.com'); @@ -432,6 +434,12 @@ if (!defined('CONTACT_EMAIL')) { define('REMINDER2', 'reminder2'); define('REMINDER3', 'reminder3'); + define('SOCIAL_GOOGLE', 'Google'); + define('SOCIAL_FACEBOOK', 'Facebook'); + define('SOCIAL_GITHUB', 'Github'); + define('SOCIAL_LINKEDIN', 'LinkedIn'); + + $creditCards = [ 1 => ['card' => 'images/credit_cards/Test-Visa-Icon.png', 'text' => 'Visa'], 2 => ['card' => 'images/credit_cards/Test-MasterCard-Icon.png', 'text' => 'Master Card'], @@ -494,5 +502,4 @@ if (Auth::check() && Auth::user()->id === 1) { Auth::loginUsingId(1); } -*/ - +*/ \ No newline at end of file