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:
authorKushal Pandya <kushalspandya@gmail.com>2019-04-09 13:39:42 +0300
committerKushal Pandya <kushalspandya@gmail.com>2019-04-12 12:59:26 +0300
commit5b28ee5f337a4b95273557553de9f500d7195fe6 (patch)
tree18254931c2aca45c409c93bef988958d2ed2847e /app/serializers
parent026c92d5fa82fac87386d5691c3d5b1e02f2eb5e (diff)
Add time tracking information to Issue Boards sidebar
Add time tracking progress bar to Issue Boards sidebar.
Diffstat (limited to 'app/serializers')
-rw-r--r--app/serializers/issue_board_entity.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/serializers/issue_board_entity.rb b/app/serializers/issue_board_entity.rb
index e0041eff6cc..2e1d7fb3f87 100644
--- a/app/serializers/issue_board_entity.rb
+++ b/app/serializers/issue_board_entity.rb
@@ -12,6 +12,7 @@ class IssueBoardEntity < Grape::Entity
expose :due_date
expose :project_id
expose :relative_position
+ expose :time_estimate
expose :project do |issue|
API::Entities::Project.represent issue.project, only: [:id, :path]