Adding sessions

This commit is contained in:
evilchili
2025-10-04 10:48:18 -07:00
parent 3854a877bf
commit 36006ceeea
5 changed files with 39 additions and 4 deletions
+3
View File
@@ -5,6 +5,8 @@ from grung.types import BackReference, Collection, Pointer, Record
from ttfrog import schema
from flask import g
READ_ONLY_FIELD_TYPES = [Collection, Pointer, BackReference]
@@ -30,6 +32,7 @@ class Form:
continue
self.record[key] = value
self.record.author = g.user
return self.record