File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 13
13
CheckboxField ,
14
14
RadioField ,
15
15
DropdownField ,
16
- AttachmentField
16
+ AttachmentField ,
17
+ CheckboxGroupField
17
18
)
18
19
from eversign .business import Business
19
20
from eversign .log import Log
20
21
21
22
api_base = 'https://api.eversign.com/api'
22
23
oauth_base = 'https://eversign.com/oauth'
23
- debug = False
24
+ debug = False
Original file line number Diff line number Diff line change @@ -134,3 +134,11 @@ class AttachmentField(Field):
134
134
def __init__ (self , ** kwargs ):
135
135
kwargs ['type' ] = 'attachment'
136
136
super (self .__class__ , self ).__init__ (** kwargs )
137
+
138
+
139
+ class CheckboxGroupField (Field ):
140
+ merge_field = True
141
+
142
+ def __init__ (self , ** kwargs ):
143
+ kwargs ['type' ] = 'checkboxGroup'
144
+ super (self .__class__ , self ).__init__ (** kwargs )
You can’t perform that action at this time.
0 commit comments