Security
Last updated
Last updated
(Color) max_severity_color
(Table) passed
(String) id
(String) name
(String) desc
(String) long_desc
(Number) score
(String) severity
(Table) list
(Color) color
(Table) failed
(String) id
(String) name
(String) desc
(String) long_desc
(Number) scor
print(sWatch.isTrusted(normalUser)) // false
print(sWatch.isTrusted(trustedUser)) // true
print(sWatch.isTrusted(staffMember)) // true
print(sWatch.isTrusted(protectedUser)) // true
print(sWatch.isStaff(normalUser)) // false
print(sWatch.isStaff(trustedUser)) // false
print(sWatch.isStaff(staffMember)) // true
print(sWatch.isStaff(protectedUser)) // true
print(sWatch.isProtected(normalUser)) // false
print(sWatch.isProtected(trustedUser)) // false
print(sWatch.isProtected(staffMember)) // false
print(sWatch.isProtected(protectedUser)) // true