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
path: root/lib
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-06 19:40:05 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-06 19:40:05 +0400
commit543506f3c59b3c7b8d6c67b69e28466cf3b45b3a (patch)
tree3ddaabc9293b0daaee1f29d5778606d2d5d7a427 /lib
parenta687bd93324255550b2cc1f239f6937913f01d80 (diff)
API: Add last_activity_at date to project entity
Diffstat (limited to 'lib')
-rw-r--r--lib/api/entities.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb
index 9c4a53bf342..8e815f2b25c 100644
--- a/lib/api/entities.rb
+++ b/lib/api/entities.rb
@@ -30,7 +30,7 @@ module API
expose :owner, using: Entities::UserBasic
expose :name, :name_with_namespace
expose :path, :path_with_namespace
- expose :issues_enabled, :merge_requests_enabled, :wall_enabled, :wiki_enabled, :created_at
+ expose :issues_enabled, :merge_requests_enabled, :wall_enabled, :wiki_enabled, :created_at, :last_activity_at
expose :namespace
end