mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Removed noisy debug
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
e59b9627c7
commit
424cbd3248
|
@ -260,7 +260,6 @@ final class Company extends SnipeModel
|
||||||
{
|
{
|
||||||
// If not logged in and hitting this, assume we are on the command line and don't scope?'
|
// If not logged in and hitting this, assume we are on the command line and don't scope?'
|
||||||
if (! static::isFullMultipleCompanySupportEnabled() || (Auth::check() && Auth::user()->isSuperUser()) || (! Auth::check())) {
|
if (! static::isFullMultipleCompanySupportEnabled() || (Auth::check() && Auth::user()->isSuperUser()) || (! Auth::check())) {
|
||||||
\Log::debug('Skip scoping in scopeCompanyableChildren. User is not logged in or is a superadmin');
|
|
||||||
return $query;
|
return $query;
|
||||||
} else {
|
} else {
|
||||||
\Log::debug('Fire scopeCompanyablesDirectly.');
|
\Log::debug('Fire scopeCompanyablesDirectly.');
|
||||||
|
@ -313,7 +312,6 @@ final class Company extends SnipeModel
|
||||||
if (count($companyable_names) == 0) {
|
if (count($companyable_names) == 0) {
|
||||||
throw new Exception('No Companyable Children to scope');
|
throw new Exception('No Companyable Children to scope');
|
||||||
} elseif (! static::isFullMultipleCompanySupportEnabled() || (Auth::check() && Auth::user()->isSuperUser())) {
|
} elseif (! static::isFullMultipleCompanySupportEnabled() || (Auth::check() && Auth::user()->isSuperUser())) {
|
||||||
\Log::debug('Skip scoping in scopeCompanyableChildren. User is not logged in or is a superadmin');
|
|
||||||
return $query;
|
return $query;
|
||||||
} else {
|
} else {
|
||||||
$f = function ($q) {
|
$f = function ($q) {
|
||||||
|
|
Loading…
Reference in a new issue