mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Updated version
This commit is contained in:
parent
a44280b765
commit
1355bd4ecc
@ -62,6 +62,8 @@ Route::get('claim_license', 'PaymentController@claim_license');
|
|||||||
Route::post('signup/validate', 'AccountController@checkEmail');
|
Route::post('signup/validate', 'AccountController@checkEmail');
|
||||||
Route::post('signup/submit', 'AccountController@submitSignup');
|
Route::post('signup/submit', 'AccountController@submitSignup');
|
||||||
|
|
||||||
|
Route::get('auth/{provider}', 'Auth\AuthController@authLogin');
|
||||||
|
|
||||||
|
|
||||||
// Laravel auth routes
|
// Laravel auth routes
|
||||||
/*
|
/*
|
||||||
@ -383,7 +385,7 @@ if (!defined('CONTACT_EMAIL')) {
|
|||||||
define('NINJA_GATEWAY_CONFIG', 'NINJA_GATEWAY_CONFIG');
|
define('NINJA_GATEWAY_CONFIG', 'NINJA_GATEWAY_CONFIG');
|
||||||
define('NINJA_WEB_URL', 'https://www.invoiceninja.com');
|
define('NINJA_WEB_URL', 'https://www.invoiceninja.com');
|
||||||
define('NINJA_APP_URL', 'https://app.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_DATE', '2000-01-01');
|
||||||
|
|
||||||
define('NINJA_FROM_EMAIL', 'maildelivery@invoiceninja.com');
|
define('NINJA_FROM_EMAIL', 'maildelivery@invoiceninja.com');
|
||||||
@ -432,6 +434,12 @@ if (!defined('CONTACT_EMAIL')) {
|
|||||||
define('REMINDER2', 'reminder2');
|
define('REMINDER2', 'reminder2');
|
||||||
define('REMINDER3', 'reminder3');
|
define('REMINDER3', 'reminder3');
|
||||||
|
|
||||||
|
define('SOCIAL_GOOGLE', 'Google');
|
||||||
|
define('SOCIAL_FACEBOOK', 'Facebook');
|
||||||
|
define('SOCIAL_GITHUB', 'Github');
|
||||||
|
define('SOCIAL_LINKEDIN', 'LinkedIn');
|
||||||
|
|
||||||
|
|
||||||
$creditCards = [
|
$creditCards = [
|
||||||
1 => ['card' => 'images/credit_cards/Test-Visa-Icon.png', 'text' => 'Visa'],
|
1 => ['card' => 'images/credit_cards/Test-Visa-Icon.png', 'text' => 'Visa'],
|
||||||
2 => ['card' => 'images/credit_cards/Test-MasterCard-Icon.png', 'text' => 'Master Card'],
|
2 => ['card' => 'images/credit_cards/Test-MasterCard-Icon.png', 'text' => 'Master Card'],
|
||||||
@ -495,4 +503,3 @@ if (Auth::check() && Auth::user()->id === 1)
|
|||||||
Auth::loginUsingId(1);
|
Auth::loginUsingId(1);
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user