Add system filters for tokens

This commit is contained in:
David Bomba 2023-07-03 07:55:10 +10:00
parent f7e3ebad97
commit 27b23b9b7a

View File

@ -36,6 +36,12 @@ class TokenFilters extends QueryFilters
}); });
} }
public function is_system(bool $value = false): Builder
{
return $this->builder->where('is_system', $value);
}
/** /**
* Sorts the list based on $sort. * Sorts the list based on $sort.
* *