debian-mirror-gitlab/app/serializers/issuable_sidebar_todo_entity.rb
2019-02-15 15:39:39 +05:30

12 lines
200 B
Ruby

# 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