files.com 1.1.654 → 1.1.655
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 +4 -4
- data/_VERSION +1 -1
- data/docs/site.md +4 -0
- data/lib/files.com/models/site.rb +6 -0
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f550b866a12c5e9fd573f826a139df67f7e7848f02547449196489566285812
|
|
4
|
+
data.tar.gz: 410a965a82c44ea690a81577c6474a9e2ba0db9ee65dcbee8c0807e341a37ef7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 610a8f1c87eea42c786776d83c22639ed35d4c7540bbc500f6d692cc79a533ebfe7cd9e06e19935890856a810d735f74b116855f70e20d3000ae680b8480a305
|
|
7
|
+
data.tar.gz: 4620f3a86fdc11734cb9739d6303d186933182a9007a20af745877672d97fd9de5430794bf73b42f74b273cb6fabac40ccedbaad3d9020f7d26e7b105f0a2be5
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.655
|
data/docs/site.md
CHANGED
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"desktop_app_session_lifetime": 1,
|
|
82
82
|
"legacy_checksums_mode": true,
|
|
83
83
|
"migrate_remote_server_sync_to_sync": true,
|
|
84
|
+
"mcp_dcr_enabled": true,
|
|
84
85
|
"mobile_app": true,
|
|
85
86
|
"mobile_app_session_ip_pinning": true,
|
|
86
87
|
"mobile_app_session_lifetime": 1,
|
|
@@ -411,6 +412,7 @@
|
|
|
411
412
|
* `desktop_app_session_lifetime` (int64): Desktop app session lifetime (in hours)
|
|
412
413
|
* `legacy_checksums_mode` (boolean): Use legacy checksums mode?
|
|
413
414
|
* `migrate_remote_server_sync_to_sync` (boolean): If true, we will migrate all remote server syncs to the new Sync model.
|
|
415
|
+
* `mcp_dcr_enabled` (boolean): Is OAuth DCR (dynamic client registration) for MCP enabled?
|
|
414
416
|
* `mobile_app` (boolean): Is the mobile app enabled?
|
|
415
417
|
* `mobile_app_session_ip_pinning` (boolean): Is mobile app session IP pinning enabled?
|
|
416
418
|
* `mobile_app_session_lifetime` (int64): Mobile app session lifetime (in hours)
|
|
@@ -599,6 +601,7 @@ Files::Site.update(
|
|
|
599
601
|
motd_use_for_sftp: false,
|
|
600
602
|
disable_all_ai_features: false,
|
|
601
603
|
ai_feature_availability: {"in_app_ai_assistant":{"site_admins":true,"workspace_admins":true,"folder_admins":true,"all_users":true}},
|
|
604
|
+
mcp_dcr_enabled: false,
|
|
602
605
|
additional_text_file_types: ["example"],
|
|
603
606
|
bundle_require_note: false,
|
|
604
607
|
bundle_send_shared_receipts: false,
|
|
@@ -776,6 +779,7 @@ Files::Site.update(
|
|
|
776
779
|
* `left_navigation_visibility` (object): Visibility settings for account navigation
|
|
777
780
|
* `disable_all_ai_features` (boolean): If true, all AI features are disabled for this site.
|
|
778
781
|
* `ai_feature_availability` (object): Availability settings for AI features by user class
|
|
782
|
+
* `mcp_dcr_enabled` (boolean): Is OAuth DCR (dynamic client registration) for MCP enabled?
|
|
779
783
|
* `additional_text_file_types` (array(string)): Additional extensions that are considered text files
|
|
780
784
|
* `bundle_require_note` (boolean): Do Bundles require internal notes?
|
|
781
785
|
* `bundle_send_shared_receipts` (boolean): Do Bundle creators receive receipts of invitations?
|
|
@@ -316,6 +316,11 @@ module Files
|
|
|
316
316
|
@attributes[:migrate_remote_server_sync_to_sync]
|
|
317
317
|
end
|
|
318
318
|
|
|
319
|
+
# boolean - Is OAuth DCR (dynamic client registration) for MCP enabled?
|
|
320
|
+
def mcp_dcr_enabled
|
|
321
|
+
@attributes[:mcp_dcr_enabled]
|
|
322
|
+
end
|
|
323
|
+
|
|
319
324
|
# boolean - Is the mobile app enabled?
|
|
320
325
|
def mobile_app
|
|
321
326
|
@attributes[:mobile_app]
|
|
@@ -1001,6 +1006,7 @@ module Files
|
|
|
1001
1006
|
# left_navigation_visibility - object - Visibility settings for account navigation
|
|
1002
1007
|
# disable_all_ai_features - boolean - If true, all AI features are disabled for this site.
|
|
1003
1008
|
# ai_feature_availability - object - Availability settings for AI features by user class
|
|
1009
|
+
# mcp_dcr_enabled - boolean - Is OAuth DCR (dynamic client registration) for MCP enabled?
|
|
1004
1010
|
# additional_text_file_types - array(string) - Additional extensions that are considered text files
|
|
1005
1011
|
# bundle_require_note - boolean - Do Bundles require internal notes?
|
|
1006
1012
|
# bundle_send_shared_receipts - boolean - Do Bundle creators receive receipts of invitations?
|
data/lib/files.com/version.rb
CHANGED