Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
perxis-proto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
perxis
perxis-proto
Compare revisions
930bef16bc69439b5fc16c76e708f65ffe00504e to ecd756865a06583ce52bff6265c0fd5e159d93b9
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
perxis/perxis-proto
Select target project
No results found
ecd756865a06583ce52bff6265c0fd5e159d93b9
Select Git revision
Loading items
Swap
Target
perxis/perxis-proto
Select target project
perxis/perxis-proto
1 result
930bef16bc69439b5fc16c76e708f65ffe00504e
Select Git revision
Loading items
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
добавлен Deprecated комментарий
· f2e6ef97
ko_oler
authored
1 year ago
f2e6ef97
Merge branch 'feature/PRXS-1726-UpdateRules' into 'master'
· ecd75686
Pavel Antonov
authored
1 year ago
Обновлены названия полей для Rules и Colleсtions.Acess See merge request
!29
ecd75686
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
proto/collections/collections.proto
+3
-0
3 additions, 0 deletions
proto/collections/collections.proto
proto/common/common.proto
+3
-0
3 additions, 0 deletions
proto/common/common.proto
with
6 additions
and
0 deletions
proto/collections/collections.proto
View file @
ecd75686
...
@@ -11,8 +11,11 @@ package content.collections;
...
@@ -11,8 +11,11 @@ package content.collections;
message
Access
{
message
Access
{
repeated
common.Action
actions
=
1
;
repeated
common.Action
actions
=
1
;
repeated
string
hidden_fields
=
5
;
repeated
string
hidden_fields
=
5
;
// Deprecated
repeated
string
readonly_fields
=
6
;
repeated
string
readonly_fields
=
6
;
repeated
string
writeonly_fields
=
7
;
repeated
string
writeonly_fields
=
7
;
repeated
string
deny_read_fields
=
8
;
repeated
string
deny_read_fields
=
8
;
repeated
string
deny_write_fields
=
9
;
repeated
string
deny_write_fields
=
9
;
}
}
...
...
This diff is collapsed.
Click to expand it.
proto/common/common.proto
View file @
ecd75686
...
@@ -40,8 +40,11 @@ message Rule {
...
@@ -40,8 +40,11 @@ message Rule {
repeated
Action
actions
=
2
;
repeated
Action
actions
=
2
;
Access
access
=
3
;
Access
access
=
3
;
repeated
string
hidden_fields
=
5
;
repeated
string
hidden_fields
=
5
;
// Deprecated
repeated
string
readonly_fields
=
6
;
repeated
string
readonly_fields
=
6
;
repeated
string
writeonly_fields
=
7
;
repeated
string
writeonly_fields
=
7
;
string
read_filter
=
8
;
string
read_filter
=
8
;
string
write_filter
=
9
;
string
write_filter
=
9
;
repeated
string
deny_read_fields
=
10
;
repeated
string
deny_read_fields
=
10
;
...
...
This diff is collapsed.
Click to expand it.