Skip to content

Commit

Permalink
[UPD] Add history dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
MakarovS96 committed Jan 26, 2018
1 parent 4bdb92d commit 6f5a8a1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/cls/History/ActiveMembers.cls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Class History.ActiveMembers Extends %Persistent
Class History.ActiveMembers Extends %Persistent [ DependsOn = Community.Member ]
{

Parameter DSTIME = "AUTO";
Expand Down
2 changes: 1 addition & 1 deletion src/cls/History/AvgComments.cls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Class History.AvgComments Extends %Persistent
Class History.AvgComments Extends %Persistent [ DependsOn = Community.Comment ]
{

Parameter DSTIME = "AUTO";
Expand Down
2 changes: 1 addition & 1 deletion src/cls/History/AvgPosts.cls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Class History.AvgPosts Extends %Persistent
Class History.AvgPosts Extends %Persistent [ DependsOn = Community.Post ]
{

Parameter DSTIME = "AUTO";
Expand Down
2 changes: 1 addition & 1 deletion src/cls/History/Views.cls
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Class History.Views Extends %Persistent
Class History.Views Extends %Persistent [ DependsOn = Community.Post ]
{

Parameter DSTIME = "AUTO";
Expand Down

0 comments on commit 6f5a8a1

Please sign in to comment.