1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 22:22:32 +01:00

Roll back for selective permission loads

This commit is contained in:
David Bomba 2023-01-30 12:59:47 +11:00
parent 5c16821fb9
commit cb7897b75e

View File

@ -267,7 +267,7 @@ class BaseController extends Controller
$updated_at = request()->has('updated_at') ? request()->input('updated_at') : 0;
if ($user->getCompany()->is_large && $updated_at == 0 && $this->complexPermissionsUser()) {
if ($user->getCompany()->is_large && $updated_at == 0) {
$updated_at = time();
}