mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Add back token creation
This commit is contained in:
parent
563c444dc7
commit
dfbb7ec093
@ -291,11 +291,11 @@ class LoginController extends BaseController
|
|||||||
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
return response()->json(['message' => 'User found, but not attached to any companies, please see your administrator'], 400);
|
||||||
}
|
}
|
||||||
|
|
||||||
// $cu->first()->account->companies->each(function ($company) use ($cu, $request) {
|
$cu->first()->account->companies->each(function ($company) use ($cu, $request) {
|
||||||
// if ($company->tokens()->where('is_system', true)->count() == 0) {
|
if ($company->tokens()->where('is_system', true)->count() == 0) {
|
||||||
// (new CreateCompanyToken($company, $cu->first()->user, $request->server('HTTP_USER_AGENT')))->handle();
|
(new CreateCompanyToken($company, $cu->first()->user, $request->server('HTTP_USER_AGENT')))->handle();
|
||||||
// }
|
}
|
||||||
// });
|
});
|
||||||
|
|
||||||
if ($request->has('current_company') && $request->input('current_company') == 'true') {
|
if ($request->has('current_company') && $request->input('current_company') == 'true') {
|
||||||
$cu->where('company_id', $company_token->company_id);
|
$cu->where('company_id', $company_token->company_id);
|
||||||
@ -480,13 +480,13 @@ class LoginController extends BaseController
|
|||||||
return $cu;
|
return $cu;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (auth()->user()->company_users()->count() != auth()->user()->tokens()->distinct('company_id')->count()) {
|
if (auth()->user()->company_users()->count() != auth()->user()->tokens()->distinct('company_id')->count()) {
|
||||||
// auth()->user()->companies->each(function ($company) {
|
auth()->user()->companies->each(function ($company) {
|
||||||
// if (!CompanyToken::where('user_id', auth()->user()->id)->where('company_id', $company->id)->exists()) {
|
if (!CompanyToken::where('user_id', auth()->user()->id)->where('company_id', $company->id)->exists()) {
|
||||||
// (new CreateCompanyToken($company, auth()->user(), 'Google_O_Auth'))->handle();
|
(new CreateCompanyToken($company, auth()->user(), 'Google_O_Auth'))->handle();
|
||||||
// }
|
}
|
||||||
// });
|
});
|
||||||
// }
|
}
|
||||||
|
|
||||||
$truth->setCompanyToken(CompanyToken::where('user_id', auth()->user()->id)->where('company_id', $set_company->id)->first());
|
$truth->setCompanyToken(CompanyToken::where('user_id', auth()->user()->id)->where('company_id', $set_company->id)->first());
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user