files.com 1.1.28 → 1.1.29

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b98f6f6fa29b392301e7d88a2d12a53c9b05ab01124aba884b3660b68e5f3f36
4
- data.tar.gz: b1c4f06fbb48981c2539a7ae43cbf8635635f5b2582ffb27d1e91163943d0b11
3
+ metadata.gz: 26e564a1629f6466a059a35de41f5ec7ca3cd3a27b0e20cd22c36dd1a4da296c
4
+ data.tar.gz: 5f0d652a806c79fb1136b506e4a0167ee9e8dbb705f238ff866cf3de34dcab9d
5
5
  SHA512:
6
- metadata.gz: ff375570ee4332b6e4fe1acfd256142b22fc987becd88fa7c16bd29a5ba5c7f66e1869f980d36d6b96cf2a49216399ee77f80ea53d640e57e7f3679a33a766cd
7
- data.tar.gz: ebb34684d801a1e9ed86fce7a2d139077e775fdb059aa2bacde1fc5942ea7bc4aa2953f1cc03c4c1c565f00d15ff5f585e0cb96ee9a8101edcb5346ff0134171
6
+ metadata.gz: a520cf072c8dedc1e0e83791ac1ffae124954b9831e7bb4625daaf04c9259eea81c1dc61f0016dae4910a57298d3bec32ca606062fc33cef5c8d7bd3ace23ed3
7
+ data.tar.gz: 54469a659ec634ff9e087160efad9818eafa13864f4772f28c4567db0429d4f966533ec3b31ed9759d39f5347cd01357660b280d250ca4446eac8f282c271acc
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.28
1
+ 1.1.29
data/docs/user.md CHANGED
@@ -115,7 +115,7 @@
115
115
  * `active_2fa` (boolean): Is 2fa active for the user?
116
116
  * `require_password_change` (boolean): Is a password change required upon next user login?
117
117
  * `password_expired` (boolean): Is user's password expired?
118
- * `restapi_permission` (boolean): Can this user access the REST API?
118
+ * `restapi_permission` (boolean): Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
119
119
  * `self_managed` (boolean): Does this user manage it's own credentials or is it a shared/bot user?
120
120
  * `sftp_permission` (boolean): Can the user access with SFTP?
121
121
  * `site_admin` (boolean): Is the user an administrator for this site?
@@ -261,7 +261,7 @@ Files::User.create(
261
261
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
262
262
  * `require_login_by` (string): Require user to login by specified date otherwise it will be disabled.
263
263
  * `require_password_change` (boolean): Is a password change required upon next user login?
264
- * `restapi_permission` (boolean): Can this user access the REST API?
264
+ * `restapi_permission` (boolean): Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
265
265
  * `self_managed` (boolean): Does this user manage it's own credentials or is it a shared/bot user?
266
266
  * `sftp_permission` (boolean): Can the user access with SFTP?
267
267
  * `site_admin` (boolean): Is the user an administrator for this site?
@@ -397,7 +397,7 @@ Files::User.update(id,
397
397
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
398
398
  * `require_login_by` (string): Require user to login by specified date otherwise it will be disabled.
399
399
  * `require_password_change` (boolean): Is a password change required upon next user login?
400
- * `restapi_permission` (boolean): Can this user access the REST API?
400
+ * `restapi_permission` (boolean): Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
401
401
  * `self_managed` (boolean): Does this user manage it's own credentials or is it a shared/bot user?
402
402
  * `sftp_permission` (boolean): Can the user access with SFTP?
403
403
  * `site_admin` (boolean): Is the user an administrator for this site?
@@ -554,7 +554,7 @@ user.update(
554
554
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
555
555
  * `require_login_by` (string): Require user to login by specified date otherwise it will be disabled.
556
556
  * `require_password_change` (boolean): Is a password change required upon next user login?
557
- * `restapi_permission` (boolean): Can this user access the REST API?
557
+ * `restapi_permission` (boolean): Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
558
558
  * `self_managed` (boolean): Does this user manage it's own credentials or is it a shared/bot user?
559
559
  * `sftp_permission` (boolean): Can the user access with SFTP?
560
560
  * `site_admin` (boolean): Is the user an administrator for this site?
@@ -419,7 +419,7 @@ module Files
419
419
  @attributes[:password_expired] = value
420
420
  end
421
421
 
422
- # boolean - Can this user access the REST API?
422
+ # boolean - Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
423
423
  def restapi_permission
424
424
  @attributes[:restapi_permission]
425
425
  end
@@ -702,7 +702,7 @@ module Files
702
702
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
703
703
  # require_login_by - string - Require user to login by specified date otherwise it will be disabled.
704
704
  # require_password_change - boolean - Is a password change required upon next user login?
705
- # restapi_permission - boolean - Can this user access the REST API?
705
+ # restapi_permission - boolean - Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
706
706
  # self_managed - boolean - Does this user manage it's own credentials or is it a shared/bot user?
707
707
  # sftp_permission - boolean - Can the user access with SFTP?
708
708
  # site_admin - boolean - Is the user an administrator for this site?
@@ -860,7 +860,7 @@ module Files
860
860
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
861
861
  # require_login_by - string - Require user to login by specified date otherwise it will be disabled.
862
862
  # require_password_change - boolean - Is a password change required upon next user login?
863
- # restapi_permission - boolean - Can this user access the REST API?
863
+ # restapi_permission - boolean - Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
864
864
  # self_managed - boolean - Does this user manage it's own credentials or is it a shared/bot user?
865
865
  # sftp_permission - boolean - Can the user access with SFTP?
866
866
  # site_admin - boolean - Is the user an administrator for this site?
@@ -972,7 +972,7 @@ module Files
972
972
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
973
973
  # require_login_by - string - Require user to login by specified date otherwise it will be disabled.
974
974
  # require_password_change - boolean - Is a password change required upon next user login?
975
- # restapi_permission - boolean - Can this user access the REST API?
975
+ # restapi_permission - boolean - Can this user access the Web app, Desktop app, SDKs, or REST API? (All of these tools use the API internally, so this is one unified permission set.)
976
976
  # self_managed - boolean - Does this user manage it's own credentials or is it a shared/bot user?
977
977
  # sftp_permission - boolean - Can the user access with SFTP?
978
978
  # site_admin - boolean - Is the user an administrator for this site?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.28"
4
+ VERSION = "1.1.29"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.28
4
+ version: 1.1.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-18 00:00:00.000000000 Z
11
+ date: 2024-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable