mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 11:26:04 +01:00
33 lines
624 B
Ruby
33 lines
624 B
Ruby
# 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
|
|
check_ownership!
|
|
check_pinned!
|
|
|
|
answer.pinned_at = nil
|
|
answer.save!
|
|
|
|
{
|
|
status: 200,
|
|
resource: nil,
|
|
}
|
|
end
|
|
|
|
private
|
|
|
|
def check_ownership!
|
|
raise ::Errors::NotAuthorized unless answer.user == user
|
|
end
|
|
|
|
def check_pinned!
|
|
raise ::Errors::BadRequest if answer.pinned_at.nil?
|
|
end
|
|
end
|
|
end
|
|
end
|