add is_system method to transient user

This commit is contained in:
Lera Elvoé 2025-05-19 18:36:18 +03:00
parent a5a7175365
commit 00c56f1417
Signed by: yagich
SSH Key Fingerprint: SHA256:6xjGb6uA7lAVcULa7byPEN//rQ0wPoG+UzYVMfZnbvc

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,