add is_system method to transient user

This commit is contained in:
2025-05-19 18:36:18 +03:00
parent a5a7175365
commit 00c56f1417

View File

@ -20,6 +20,9 @@ util.TransientUser = {
is_guest = function (self)
return true
end,
is_system = function (self)
return false
end,
is_logged_in_guest = function (self)
return false
end,