retrospring/lib/use_case/question/destroy.rb
Georg Gadinger 9413d23a02 let Zeitwerk autoload the lib/ directory
this also allows the UseCase classes to be hot reloaded in dev 🎉

- remove use_case requires (except for the exporter as Zeitwerk
  doesn't know about the subclasses)
- move version.rb to lib/retrospring so that Zeitwerk knows where
  to find Retrospring::Version
2022-12-29 20:57:28 +01:00

25 lines
515 B
Ruby

# frozen_string_literal: true
require "errors"
module UseCase
module Question
class Destroy < UseCase::Base
option :question_id, type: Types::Coercible::Integer
option :current_user, type: Types::Instance(::User)
def call
question = ::Question.find(question_id)
raise Errors::Forbidden unless current_user&.mod? || question.user == current_user
question.destroy!
{
status: 204,
resource: nil,
}
end
end
end
end