Move interactor to namespace

This commit is contained in:
Alex Sherman 2020-11-30 16:20:24 +05:00
parent 4c7f9f2026
commit 30ddf83ee4
8 changed files with 40 additions and 34 deletions

View file

@ -0,0 +1,9 @@
module Domains
module Delete
class Base < ActiveInteraction::Base
object :domain,
class: Domain,
description: 'Domain to delete'
end
end
end