Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-05-04 04:47:10 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2017-05-04 21:44:11 +0300
commit9f2edaa84642113d33fee37eee1a8daca2be54c0 (patch)
tree0927b5dfc5788845d4528ca95c0de603f2239006 /app/models/project_wiki.rb
parent91b5aaf770836b7101414527a4650db5fa669ce2 (diff)
Update last_repository_updated_at when the wiki is updated
Diffstat (limited to 'app/models/project_wiki.rb')
-rw-r--r--app/models/project_wiki.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project_wiki.rb b/app/models/project_wiki.rb
index 70eef359cdd..189c106b70b 100644
--- a/app/models/project_wiki.rb
+++ b/app/models/project_wiki.rb
@@ -183,6 +183,6 @@ class ProjectWiki
end
def update_project_activity
- @project.touch(:last_activity_at)
+ @project.touch(:last_activity_at, :last_repository_updated_at)
end
end