feat: faster access checks

This commit is contained in:
Jason Rasmussen
2025-09-11 14:06:27 -04:00
parent 722a464e23
commit 42e1e0c66a
17 changed files with 324 additions and 101 deletions
+3
View File
@@ -55,6 +55,9 @@ String parameterToString(dynamic value) {
if (value is DateTime) {
return value.toUtc().toIso8601String();
}
if (value is AccessHint) {
return AccessHintTypeTransformer().encode(value).toString();
}
if (value is AlbumUserRole) {
return AlbumUserRoleTypeTransformer().encode(value).toString();
}