Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • perxis/perxis-proto
1 result
Show changes
Commits on Source (3)
......@@ -11,8 +11,8 @@ package content.collections;
message Access {
repeated common.Action actions = 1;
repeated string hidden_fields = 5;
repeated string deny_read_fields = 6;
repeated string deny_write_fields = 7;
repeated string readonly_fields = 6;
repeated string writeonly_fields = 7;
}
message Collection {
......
......@@ -40,8 +40,8 @@ message Rule {
repeated Action actions = 2;
Access access = 3;
repeated string hidden_fields = 5;
repeated string deny_read_fields = 6;
repeated string deny_write_fields = 7;
repeated string readonly_fields = 6;
repeated string writeonly_fields = 7;
string read_filter = 8;
string write_filter = 9;
}
......