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

issuable_sidebar_todo_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2c98433f059fa6bbe61414383e0c2ae393b322c (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class IssuableSidebarTodoEntity < Grape::Entity
  include Gitlab::Routing

  expose :id

  expose :delete_path do |todo|
    dashboard_todo_path(todo) if todo
  end
end