podemos-info/census

View on GitHub
app/commands/issues/gone_issue.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Issues
  # A command to mark an issue as gone
  class GoneIssue < CloseIssue
    def close_action
      issue.gone!
    end
  end
end