mirror of
https://github.com/internetee/registry.git
synced 2025-08-04 00:42:04 +02:00
Move interactor to namespace
This commit is contained in:
parent
a40116e05e
commit
8ff8aa78c8
8 changed files with 102 additions and 96 deletions
10
app/interactions/domains/client_hold/base.rb
Normal file
10
app/interactions/domains/client_hold/base.rb
Normal file
|
@ -0,0 +1,10 @@
|
|||
module Domains
|
||||
module ClientHold
|
||||
class Base < ActiveInteraction::Base
|
||||
def to_stdout(message)
|
||||
time = Time.zone.now.utc
|
||||
STDOUT << "#{time} - #{message}\n" unless Rails.env.test?
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue