File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -147,7 +147,7 @@ def from_dict(cls, dct):
147
147
@dataclass
148
148
class BooleanSettingsInfo :
149
149
value : bool
150
- inherited : bool
150
+ inherited : bool = False
151
151
152
152
@classmethod
153
153
def from_dict (cls , dct ):
@@ -159,6 +159,8 @@ class SettingsInfo:
159
159
libaryDocumentCreationVisible : BooleanSettingsInfo = None
160
160
sendRestrictedToWorkflows : BooleanSettingsInfo = None
161
161
userCanSend : BooleanSettingsInfo = None
162
+ userManagedWorkflowsEnabled : BooleanSettingsInfo = None
163
+ allowedToShareUserCreatedWorkflows : BooleanSettingsInfo = None
162
164
163
165
@classmethod
164
166
def from_dict (cls , dct ):
Original file line number Diff line number Diff line change 11
11
12
12
class SignCache (CacheBase ):
13
13
# increment this every time there are changes to table schema or data model
14
- VERSION : int = 1
14
+ VERSION : int = 2
15
15
16
16
def __init__ (self , store_path : Path , org_name : str ) -> None :
17
17
sqlite3 .register_adapter (DetailedUserInfo , adapt_user )
You can’t perform that action at this time.
0 commit comments