|
23 | 23 | "dav_permission": true, |
24 | 24 | "disabled": true, |
25 | 25 | "disabled_expired_or_inactive": true, |
| 26 | + "desktop_configuration_profile_id": 1, |
26 | 27 | "email": "john.doe@files.com", |
27 | 28 | "filesystem_layout": "site_root", |
28 | 29 | "first_login_at": "2000-01-01T01:00:00Z", |
|
99 | 100 | * `dav_permission` (boolean): Can the user connect with WebDAV? |
100 | 101 | * `disabled` (boolean): Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date. |
101 | 102 | * `disabled_expired_or_inactive` (boolean): Computed property that returns true if user disabled or expired or inactive. |
| 103 | +* `desktop_configuration_profile_id` (int64): Desktop Configuration Profile ID assigned directly to this user, if any. |
102 | 104 | * `email` (email): User email address |
103 | 105 | * `filesystem_layout` (string): File system layout |
104 | 106 | * `first_login_at` (date-time): User's first login time |
@@ -226,6 +228,7 @@ await User.create({ |
226 | 228 | 'bypass_user_lifecycle_rules': false, |
227 | 229 | 'bypass_site_allowed_ips': false, |
228 | 230 | 'dav_permission': true, |
| 231 | + 'desktop_configuration_profile_id': 1, |
229 | 232 | 'disabled': true, |
230 | 233 | 'filesystem_layout': "site_root", |
231 | 234 | 'ftp_permission': true, |
@@ -285,6 +288,7 @@ await User.create({ |
285 | 288 | * `bypass_user_lifecycle_rules` (boolean): Exempt this user from user lifecycle rules? |
286 | 289 | * `bypass_site_allowed_ips` (boolean): Allow this user to skip site-wide IP blacklists? |
287 | 290 | * `dav_permission` (boolean): Can the user connect with WebDAV? |
| 291 | +* `desktop_configuration_profile_id` (int64): Desktop Configuration Profile ID assigned directly to this user, if any. |
288 | 292 | * `disabled` (boolean): Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date. |
289 | 293 | * `filesystem_layout` (string): File system layout |
290 | 294 | * `ftp_permission` (boolean): Can the user access with FTP/FTPS? |
@@ -385,6 +389,7 @@ await user.update({ |
385 | 389 | 'bypass_user_lifecycle_rules': false, |
386 | 390 | 'bypass_site_allowed_ips': false, |
387 | 391 | 'dav_permission': true, |
| 392 | + 'desktop_configuration_profile_id': 1, |
388 | 393 | 'disabled': true, |
389 | 394 | 'filesystem_layout': "site_root", |
390 | 395 | 'ftp_permission': true, |
@@ -445,6 +450,7 @@ await user.update({ |
445 | 450 | * `bypass_user_lifecycle_rules` (boolean): Exempt this user from user lifecycle rules? |
446 | 451 | * `bypass_site_allowed_ips` (boolean): Allow this user to skip site-wide IP blacklists? |
447 | 452 | * `dav_permission` (boolean): Can the user connect with WebDAV? |
| 453 | +* `desktop_configuration_profile_id` (int64): Desktop Configuration Profile ID assigned directly to this user, if any. |
448 | 454 | * `disabled` (boolean): Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date. |
449 | 455 | * `filesystem_layout` (string): File system layout |
450 | 456 | * `ftp_permission` (boolean): Can the user access with FTP/FTPS? |
@@ -503,6 +509,7 @@ await user.update({ |
503 | 509 | "dav_permission": true, |
504 | 510 | "disabled": true, |
505 | 511 | "disabled_expired_or_inactive": true, |
| 512 | + "desktop_configuration_profile_id": 1, |
506 | 513 | "email": "john.doe@files.com", |
507 | 514 | "filesystem_layout": "site_root", |
508 | 515 | "first_login_at": "2000-01-01T01:00:00Z", |
|
0 commit comments