summaryrefslogtreecommitdiff
path: root/app/serializers/issuable_sidebar_todo_entity.rb
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