2023-02-06 23:36:29 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module UseCase
|
|
|
|
module Answer
|
|
|
|
class Unpin < UseCase::Base
|
|
|
|
option :user, type: Types.Instance(::User)
|
|
|
|
option :answer, type: Types.Instance(::Answer)
|
|
|
|
|
|
|
|
def call
|
2023-02-10 02:34:55 -08:00
|
|
|
authorize!(:unpin, user, answer)
|
2023-02-06 23:36:29 -08:00
|
|
|
check_pinned!
|
|
|
|
|
|
|
|
answer.pinned_at = nil
|
|
|
|
answer.save!
|
|
|
|
|
|
|
|
{
|
|
|
|
status: 200,
|
2023-02-07 13:06:35 -08:00
|
|
|
resource: nil,
|
2023-02-06 23:36:29 -08:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def check_pinned!
|
|
|
|
raise ::Errors::BadRequest if answer.pinned_at.nil?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|