files.com 1.1.275 → 1.1.276

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 279ad63b803fb855d45136754e9de75a9b937ed7a8a4079197f9f54407a9e9a5
4
- data.tar.gz: c9e5fd4d4edf4a4d50f9178813bfc8322ce5b10ab818b957255c2d9b14288c38
3
+ metadata.gz: 0d5ac268a40afbdd7b25be984abb4f950926c2040f83ee9ac62c550ce2d0747d
4
+ data.tar.gz: 0b618ab598ba22eaf0b8c9109cd26db5895bccc4a4557bc01f1d0c5b98c54675
5
5
  SHA512:
6
- metadata.gz: 107c937d931031b62f99e3c84ee2fa23c4123295e9ff7d7175e4215ed841e35aa8450b2c2f133aa96e4e16669ee3c8fe4e3b8802982452eb1c191d5620424f63
7
- data.tar.gz: f41a7e862a551ec756f95e4fb544252eb770136d84107073312e629a818ad2b0bbae8e88224bd7bf23826c5c1948f3eb2293e4c32d83484e19fc54072585ed7f
6
+ metadata.gz: 37211a48a596a26931475be0a0d26387bdb1662fb417adbf0d5e96413d08a4caa9abcc4deacf02fa3efd14b08bc333245ec8db126f4bf607b53ddcda34b8ce45
7
+ data.tar.gz: bfc5df7c750d7b2f749bbf0dd3f780bbf2f9a6b47303bbeb10b1083555470949b48836e2cd1ed430760807aef2987b472d93cecd1182afc1dfe07e20587f6977
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.275
1
+ 1.1.276
data/docs/site.md CHANGED
@@ -284,7 +284,8 @@
284
284
  "user_root": "example",
285
285
  "user_home": "example",
286
286
  "days_remaining_until_password_expire": 1,
287
- "password_expire_at": "2000-01-01T01:00:00Z"
287
+ "password_expire_at": "2000-01-01T01:00:00Z",
288
+ "has_reassignable_associations": true
288
289
  },
289
290
  "user_lockout": true,
290
291
  "user_lockout_lock_period": 1,
data/docs/user.md CHANGED
@@ -71,7 +71,8 @@
71
71
  "user_root": "example",
72
72
  "user_home": "example",
73
73
  "days_remaining_until_password_expire": 1,
74
- "password_expire_at": "2000-01-01T01:00:00Z"
74
+ "password_expire_at": "2000-01-01T01:00:00Z",
75
+ "has_reassignable_associations": true
75
76
  }
76
77
  ```
77
78
 
@@ -141,6 +142,7 @@
141
142
  * `user_home` (string): Home folder for FTP/SFTP. Note that this is not used for API, Desktop, or Web interface.
142
143
  * `days_remaining_until_password_expire` (int64): Number of days remaining until password expires
143
144
  * `password_expire_at` (date-time): Password expiration datetime
145
+ * `has_reassignable_associations` (boolean): Does this user have any associations that can be reassigned on delete?
144
146
  * `avatar_file` (file): An image file for your user avatar.
145
147
  * `avatar_delete` (boolean): If true, the avatar will be deleted.
146
148
  * `change_password` (string): Used for changing a password on an existing user.
@@ -599,6 +599,15 @@ module Files
599
599
  @attributes[:password_expire_at] = value
600
600
  end
601
601
 
602
+ # boolean - Does this user have any associations that can be reassigned on delete?
603
+ def has_reassignable_associations
604
+ @attributes[:has_reassignable_associations]
605
+ end
606
+
607
+ def has_reassignable_associations=(value)
608
+ @attributes[:has_reassignable_associations] = value
609
+ end
610
+
602
611
  # file - An image file for your user avatar.
603
612
  def avatar_file
604
613
  @attributes[:avatar_file]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.275"
4
+ VERSION = "1.1.276"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.275
4
+ version: 1.1.276
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com