You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/models/Clickwrap.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@
16
16
*`id` (int64): Clickwrap ID
17
17
*`name` (string): Name of the Clickwrap agreement (used when selecting from multiple Clickwrap agreements.)
18
18
*`body` (string): Body text of Clickwrap (supports Markdown formatting).
19
-
*`use_with_users` (string): Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
19
+
*`use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
20
20
*`use_with_bundles` (string): Use this Clickwrap for Bundles?
21
21
*`use_with_inboxes` (string): Use this Clickwrap for Inboxes?
22
22
@@ -69,7 +69,7 @@ await Clickwrap.create({
69
69
*`body` (string): Body text of Clickwrap (supports Markdown formatting).
70
70
*`use_with_bundles` (string): Use this Clickwrap for Bundles?
71
71
*`use_with_inboxes` (string): Use this Clickwrap for Inboxes?
72
-
*`use_with_users` (string): Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
72
+
*`use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
73
73
74
74
---
75
75
@@ -94,7 +94,7 @@ await clickwrap.update({
94
94
*`body` (string): Body text of Clickwrap (supports Markdown formatting).
95
95
*`use_with_bundles` (string): Use this Clickwrap for Bundles?
96
96
*`use_with_inboxes` (string): Use this Clickwrap for Inboxes?
97
-
*`use_with_users` (string): Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
97
+
*`use_with_users` (string): Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
// string # Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
56
+
// string # Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
// body - string - Body text of Clickwrap (supports Markdown formatting).
80
80
// use_with_bundles - string - Use this Clickwrap for Bundles?
81
81
// use_with_inboxes - string - Use this Clickwrap for Inboxes?
82
-
// use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
82
+
// use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
// body - string - Body text of Clickwrap (supports Markdown formatting).
359
359
// use_with_bundles - string - Use this Clickwrap for Bundles?
360
360
// use_with_inboxes - string - Use this Clickwrap for Inboxes?
361
-
// use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
361
+
// use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
Copy file name to clipboardExpand all lines: src/models/Clickwrap.js
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ class Clickwrap {
49
49
this.attributes.body=value
50
50
}
51
51
52
-
// string # Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
52
+
// string # Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
// body - string - Body text of Clickwrap (supports Markdown formatting).
76
76
// use_with_bundles - string - Use this Clickwrap for Bundles?
77
77
// use_with_inboxes - string - Use this Clickwrap for Inboxes?
78
-
// use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
78
+
// use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
79
79
update=async(params={})=>{
80
80
if(!this.attributes.id){
81
81
thrownewerrors.EmptyPropertyError('Current object has no id')
@@ -214,7 +214,7 @@ class Clickwrap {
214
214
// body - string - Body text of Clickwrap (supports Markdown formatting).
215
215
// use_with_bundles - string - Use this Clickwrap for Bundles?
216
216
// use_with_inboxes - string - Use this Clickwrap for Inboxes?
217
-
// use_with_users - string - Use this Clickwrap for User Registrations? Note: This only applies to User Registrations where the User is invited to your Files.com site using an E-Mail invitation process where they then set their own password.
217
+
// use_with_users - string - Use this Clickwrap for Users? Values: `none`, `require` (new user signup via email invitation only), `require_all_users_once` (show to all users at their next web login; once accepted, not shown again), `require_all_users_always` (show to all users on every web login).
218
218
staticcreate=async(params={},options={})=>{
219
219
if(params.name&&!isString(params.name)){
220
220
thrownewerrors.InvalidParameterError(`Bad parameter: name must be of type String, received ${getType(params.name)}`)
0 commit comments