files.com 1.0.85 → 1.0.86

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: 4f256669e61998c0d04e226d0f790790fe0727fff5a0a4ff5d91711e91b207dc
4
- data.tar.gz: 13c775f7f838a326c807878ea590e4ebb326177b557ef7ab4934a8e3888e2f0d
3
+ metadata.gz: 81661c828a286bf493ec4a3e8c1fbf4251f279da18453c6ae6f25512796f7590
4
+ data.tar.gz: 2b1c301a03bce524e18b063e264c181e1101275e1da3900f77bb0ee0c4960544
5
5
  SHA512:
6
- metadata.gz: dc7836b465ba29c3161ef92d853994f4fe186623c58bb3fa9f46e126dcbb6f34aa189a90b21d80c49cb3b8610af3e64a84dde4a017743df29357849bee536222
7
- data.tar.gz: 7c09856639a412cfe9e24aad75fdf3bfdca104d7f7077126f3c4c4f9b7b192251a0fd648e11c38e720f45afc78a45bf958a38fe09c33198435c25625c2e8cdc6
6
+ metadata.gz: 5a32070df0f67ae167a2a096e291ccf303477191fbdb1ab4caa923709492405c744198304b6f55980b9a90bbe53607aa0ffb7d1e242b0e8a82588f527ae559a7
7
+ data.tar.gz: cb5bee0eaa8834145d9fd17f76c175eea7a344bf8ea8438b36724b61df807a1ad0848447c29aa6ee7d90b74acf7dce55cf55caa7d8cd949b2c92347b9c2d9943
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.85
1
+ 1.0.86
@@ -64,6 +64,7 @@
64
64
  "max_prior_passwords": 1,
65
65
  "next_billing_amount": "",
66
66
  "next_billing_date": "Apr 20",
67
+ "office_integration_available": true,
67
68
  "opt_out_global": true,
68
69
  "overage_notified_at": "2000-01-01T01:00:00Z",
69
70
  "overage_notify": true,
@@ -176,6 +177,7 @@
176
177
  * `max_prior_passwords` (int64): Number of prior passwords to disallow
177
178
  * `next_billing_amount` (double): Next billing amount
178
179
  * `next_billing_date` (string): Next billing date
180
+ * `office_integration_available` (boolean): Allow users to use Office for the web?
179
181
  * `opt_out_global` (boolean): Use servers in the USA only?
180
182
  * `overage_notified_at` (date-time): Last time the site was notified about an overage
181
183
  * `overage_notify` (boolean): Notify site email of overages?
@@ -270,6 +272,7 @@ Files::Site.update(
270
272
  desktop_app_session_lifetime: 1,
271
273
  folder_permissions_groups_only: true,
272
274
  welcome_screen: "user_controlled",
275
+ office_integration_available: true,
273
276
  session_expiry: 1.0,
274
277
  ssl_required: true,
275
278
  tls_disabled: true,
@@ -361,6 +364,7 @@ Files::Site.update(
361
364
  * `desktop_app_session_lifetime` (int64): Desktop app session lifetime (in hours)
362
365
  * `folder_permissions_groups_only` (boolean): If true, permissions for this site must be bound to a group (not a user). Otherwise, permissions must be bound to a user.
363
366
  * `welcome_screen` (string): Does the welcome screen appear?
367
+ * `office_integration_available` (boolean): Allow users to use Office for the web?
364
368
  * `session_expiry` (double): Session expiry in hours
365
369
  * `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
366
370
  * `tls_disabled` (boolean): Is TLS disabled(site setting)?
@@ -32,6 +32,7 @@
32
32
  "name": "John Doe",
33
33
  "notes": "Internal notes on this user.",
34
34
  "notification_daily_send_time": 18,
35
+ "office_integration_enabled": true,
35
36
  "password_set_at": "2000-01-01T01:00:00Z",
36
37
  "password_validity_days": 1,
37
38
  "public_keys_count": 1,
@@ -79,6 +80,7 @@
79
80
  * `name` (string): User's full name
80
81
  * `notes` (string): Any internal notes on the user
81
82
  * `notification_daily_send_time` (int64): Hour of the day at which daily notifications should be sent. Can be in range 0 to 23
83
+ * `office_integration_enabled` (boolean): Enable integration with Office for the web?
82
84
  * `password_set_at` (date-time): Last time the user's password was set
83
85
  * `password_validity_days` (int64): Number of days to allow user to use the same password
84
86
  * `public_keys_count` (int64): Number of public keys associated with this user
@@ -175,6 +177,7 @@ Files::User.create(
175
177
  notification_daily_send_time: 18,
176
178
  name: "John Doe",
177
179
  notes: "Internal notes on this user.",
180
+ office_integration_enabled: true,
178
181
  password_validity_days: 1,
179
182
  receive_admin_alerts: true,
180
183
  require_password_change: true,
@@ -219,6 +222,7 @@ Files::User.create(
219
222
  * `notification_daily_send_time` (int64): Hour of the day at which daily notifications should be sent. Can be in range 0 to 23
220
223
  * `name` (string): User's full name
221
224
  * `notes` (string): Any internal notes on the user
225
+ * `office_integration_enabled` (boolean): Enable integration with Office for the web?
222
226
  * `password_validity_days` (int64): Number of days to allow user to use the same password
223
227
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
224
228
  * `require_password_change` (boolean): Is a password change required upon next user login?
@@ -299,6 +303,7 @@ Files::User.update(id,
299
303
  notification_daily_send_time: 18,
300
304
  name: "John Doe",
301
305
  notes: "Internal notes on this user.",
306
+ office_integration_enabled: true,
302
307
  password_validity_days: 1,
303
308
  receive_admin_alerts: true,
304
309
  require_password_change: true,
@@ -344,6 +349,7 @@ Files::User.update(id,
344
349
  * `notification_daily_send_time` (int64): Hour of the day at which daily notifications should be sent. Can be in range 0 to 23
345
350
  * `name` (string): User's full name
346
351
  * `notes` (string): Any internal notes on the user
352
+ * `office_integration_enabled` (boolean): Enable integration with Office for the web?
347
353
  * `password_validity_days` (int64): Number of days to allow user to use the same password
348
354
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
349
355
  * `require_password_change` (boolean): Is a password change required upon next user login?
@@ -445,6 +451,7 @@ user.update(
445
451
  notification_daily_send_time: 18,
446
452
  name: "John Doe",
447
453
  notes: "Internal notes on this user.",
454
+ office_integration_enabled: true,
448
455
  password_validity_days: 1,
449
456
  receive_admin_alerts: true,
450
457
  require_password_change: true,
@@ -490,6 +497,7 @@ user.update(
490
497
  * `notification_daily_send_time` (int64): Hour of the day at which daily notifications should be sent. Can be in range 0 to 23
491
498
  * `name` (string): User's full name
492
499
  * `notes` (string): Any internal notes on the user
500
+ * `office_integration_enabled` (boolean): Enable integration with Office for the web?
493
501
  * `password_validity_days` (int64): Number of days to allow user to use the same password
494
502
  * `receive_admin_alerts` (boolean): Should the user receive admin alerts such a certificate expiration notifications and overages?
495
503
  * `require_password_change` (boolean): Is a password change required upon next user login?
@@ -309,6 +309,11 @@ module Files
309
309
  @attributes[:next_billing_date]
310
310
  end
311
311
 
312
+ # boolean - Allow users to use Office for the web?
313
+ def office_integration_available
314
+ @attributes[:office_integration_available]
315
+ end
316
+
312
317
  # boolean - Use servers in the USA only?
313
318
  def opt_out_global
314
319
  @attributes[:opt_out_global]
@@ -585,6 +590,7 @@ module Files
585
590
  # desktop_app_session_lifetime - int64 - Desktop app session lifetime (in hours)
586
591
  # folder_permissions_groups_only - boolean - If true, permissions for this site must be bound to a group (not a user). Otherwise, permissions must be bound to a user.
587
592
  # welcome_screen - string - Does the welcome screen appear?
593
+ # office_integration_available - boolean - Allow users to use Office for the web?
588
594
  # session_expiry - double - Session expiry in hours
589
595
  # ssl_required - boolean - Is SSL required? Disabling this is insecure.
590
596
  # tls_disabled - boolean - Is TLS disabled(site setting)?
@@ -239,6 +239,15 @@ module Files
239
239
  @attributes[:notification_daily_send_time] = value
240
240
  end
241
241
 
242
+ # boolean - Enable integration with Office for the web?
243
+ def office_integration_enabled
244
+ @attributes[:office_integration_enabled]
245
+ end
246
+
247
+ def office_integration_enabled=(value)
248
+ @attributes[:office_integration_enabled] = value
249
+ end
250
+
242
251
  # date-time - Last time the user's password was set
243
252
  def password_set_at
244
253
  @attributes[:password_set_at]
@@ -542,6 +551,7 @@ module Files
542
551
  # notification_daily_send_time - int64 - Hour of the day at which daily notifications should be sent. Can be in range 0 to 23
543
552
  # name - string - User's full name
544
553
  # notes - string - Any internal notes on the user
554
+ # office_integration_enabled - boolean - Enable integration with Office for the web?
545
555
  # password_validity_days - int64 - Number of days to allow user to use the same password
546
556
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
547
557
  # require_password_change - boolean - Is a password change required upon next user login?
@@ -686,6 +696,7 @@ module Files
686
696
  # notification_daily_send_time - int64 - Hour of the day at which daily notifications should be sent. Can be in range 0 to 23
687
697
  # name - string - User's full name
688
698
  # notes - string - Any internal notes on the user
699
+ # office_integration_enabled - boolean - Enable integration with Office for the web?
689
700
  # password_validity_days - int64 - Number of days to allow user to use the same password
690
701
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
691
702
  # require_password_change - boolean - Is a password change required upon next user login?
@@ -788,6 +799,7 @@ module Files
788
799
  # notification_daily_send_time - int64 - Hour of the day at which daily notifications should be sent. Can be in range 0 to 23
789
800
  # name - string - User's full name
790
801
  # notes - string - Any internal notes on the user
802
+ # office_integration_enabled - boolean - Enable integration with Office for the web?
791
803
  # password_validity_days - int64 - Number of days to allow user to use the same password
792
804
  # receive_admin_alerts - boolean - Should the user receive admin alerts such a certificate expiration notifications and overages?
793
805
  # require_password_change - boolean - Is a password change required upon next user login?
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.0.85
4
+ version: 1.0.86
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-09 00:00:00.000000000 Z
11
+ date: 2020-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable