mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 10:06:03 +01:00
9413d23a02
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
25 lines
451 B
Ruby
25 lines
451 B
Ruby
# frozen_string_literal: true
|
|
|
|
module UseCase
|
|
module User
|
|
class Unban < UseCase::Base
|
|
param :target_user_id, type: Types::Coercible::Integer
|
|
|
|
def call
|
|
target_user.unban
|
|
|
|
{
|
|
status: 204,
|
|
resource: nil,
|
|
extra: {
|
|
target_user: target_user
|
|
}
|
|
}
|
|
end
|
|
|
|
def target_user
|
|
@target_user ||= ::User.find(target_user_id)
|
|
end
|
|
end
|
|
end
|
|
end
|