mirror of
https://github.com/Retrospring/retrospring.git
synced 2024-11-20 12:39:53 +01:00
18 lines
281 B
Ruby
18 lines
281 B
Ruby
# frozen_string_literal: true
|
|
|
|
module UseCase
|
|
module MuteRule
|
|
class Destroy < UseCase::Base
|
|
option :rule, Types.Instance(::MuteRule)
|
|
|
|
def call
|
|
rule.destroy!
|
|
|
|
{
|
|
status: 204,
|
|
resource: nil
|
|
}
|
|
end
|
|
end
|
|
end
|
|
end
|