files.com 1.1.133 → 1.1.134
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/permission.md +5 -5
- data/lib/files.com/models/permission.rb +5 -5
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '019143d70ade40e5a242798d14c869726438d9446789145cb825993cca90d08e'
|
4
|
+
data.tar.gz: 51ed1c765234cbf29d386401b32fd63640e064c94c91be8b3d4bb7fb7437ed46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 365fe737726cf052824a70eaa81188a43d804afbe861f9e5e2140af05e772b89e3bbe71e657f37162b9045c094908594cf474f896485c4f51bcd9242420fd178
|
7
|
+
data.tar.gz: 5afa057bf594fc7ba4f41f1255614eae21aba0f229a1fac025b4c45a20dddde5edb216728776185fe1e140782ab34c002c67098d5f7ca99a46c7a70206f71db7
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.134
|
data/docs/permission.md
CHANGED
@@ -16,13 +16,13 @@
|
|
16
16
|
```
|
17
17
|
|
18
18
|
* `id` (int64): Permission ID
|
19
|
-
* `path` (string):
|
19
|
+
* `path` (string): Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
20
20
|
* `user_id` (int64): User ID
|
21
|
-
* `username` (string):
|
21
|
+
* `username` (string): Username (if applicable)
|
22
22
|
* `group_id` (int64): Group ID
|
23
|
-
* `group_name` (string): Group name if applicable
|
24
|
-
* `permission` (string): Permission type
|
25
|
-
* `recursive` (boolean):
|
23
|
+
* `group_name` (string): Group name (if applicable)
|
24
|
+
* `permission` (string): Permission type. See the table referenced in the documentation for an explanation of each permission.
|
25
|
+
* `recursive` (boolean): Recursive: does this permission apply to subfolders?
|
26
26
|
|
27
27
|
|
28
28
|
---
|
@@ -18,7 +18,7 @@ module Files
|
|
18
18
|
@attributes[:id] = value
|
19
19
|
end
|
20
20
|
|
21
|
-
# string -
|
21
|
+
# string - Path. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
22
22
|
def path
|
23
23
|
@attributes[:path]
|
24
24
|
end
|
@@ -36,7 +36,7 @@ module Files
|
|
36
36
|
@attributes[:user_id] = value
|
37
37
|
end
|
38
38
|
|
39
|
-
# string -
|
39
|
+
# string - Username (if applicable)
|
40
40
|
def username
|
41
41
|
@attributes[:username]
|
42
42
|
end
|
@@ -54,7 +54,7 @@ module Files
|
|
54
54
|
@attributes[:group_id] = value
|
55
55
|
end
|
56
56
|
|
57
|
-
# string - Group name if applicable
|
57
|
+
# string - Group name (if applicable)
|
58
58
|
def group_name
|
59
59
|
@attributes[:group_name]
|
60
60
|
end
|
@@ -63,7 +63,7 @@ module Files
|
|
63
63
|
@attributes[:group_name] = value
|
64
64
|
end
|
65
65
|
|
66
|
-
# string - Permission type
|
66
|
+
# string - Permission type. See the table referenced in the documentation for an explanation of each permission.
|
67
67
|
def permission
|
68
68
|
@attributes[:permission]
|
69
69
|
end
|
@@ -72,7 +72,7 @@ module Files
|
|
72
72
|
@attributes[:permission] = value
|
73
73
|
end
|
74
74
|
|
75
|
-
# boolean -
|
75
|
+
# boolean - Recursive: does this permission apply to subfolders?
|
76
76
|
def recursive
|
77
77
|
@attributes[:recursive]
|
78
78
|
end
|
data/lib/files.com/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.134
|
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-09-
|
11
|
+
date: 2024-09-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|