gitlab-org--gitlab-foss/app/serializers/issuable_sidebar_todo_entit...

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