Skip to content

Commit

Permalink
Add more default columns. (#1932)
Browse files Browse the repository at this point in the history
  • Loading branch information
tusmester committed Jun 8, 2023
1 parent 0622128 commit 80890dc
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
14 changes: 13 additions & 1 deletion src/ContentRepository/ServicesComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,7 @@ Change your password
builder.Patch("7.7.28", "7.7.29", "2023-03-27", "Upgrades sensenet content repository.")
.Action(Patch_7_7_29);

builder.Patch("7.7.29", "7.7.29.5", "2023-06-03", "Upgrades sensenet content repository.")
builder.Patch("7.7.29", "7.7.29.6", "2023-06-08", "Upgrades sensenet content repository.")
.Action(Patch_7_7_30);
}

Expand Down Expand Up @@ -1646,6 +1646,18 @@ private void Patch_7_7_30(PatchExecutionContext context)
""field"": ""CreatedBy"",
""title"": ""Created by""
},
{
""field"": ""CreationDate"",
""title"": ""Creation Date""
},
{
""field"": ""ModifiedBy"",
""title"": ""Modified by""
},
{
""field"": ""ModificationDate"",
""title"": ""Modification Date""
},
{
""field"": ""Actions"",
""title"": ""Actions""
Expand Down
4 changes: 2 additions & 2 deletions src/nuget/snadmin/install-services-core/manifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Package type='Install' >
<Id>SenseNet.Services</Id>
<Description>sensenet Services</Description>
<ReleaseDate>2023-06-03</ReleaseDate>
<Version>7.7.29.5</Version>
<ReleaseDate>2023-06-08</ReleaseDate>
<Version>7.7.29.6</Version>
<Steps>
<Phase>
<StartRepository startIndexingEngine="false" startWorkflowEngine="false" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@
"field": "CreatedBy",
"title": "Created by"
},
{
"field": "CreationDate",
"title": "Creation Date"
},
{
"field": "ModifiedBy",
"title": "Modified by"
},
{
"field": "ModificationDate",
"title": "Modification Date"
},
{
"field": "Actions",
"title": "Actions"
Expand Down

0 comments on commit 80890dc

Please sign in to comment.