mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
EPP Request logging
This commit is contained in:
parent
1b3f27e01d
commit
d5a824064e
7 changed files with 66 additions and 2 deletions
6
app/models/api_log/db.rb
Normal file
6
app/models/api_log/db.rb
Normal file
|
@ -0,0 +1,6 @@
|
|||
module ApiLog
|
||||
class Db < ActiveRecord::Base
|
||||
self.abstract_class = true
|
||||
establish_connection "api_log_#{Rails.env}".to_sym
|
||||
end
|
||||
end
|
4
app/models/api_log/epp_log.rb
Normal file
4
app/models/api_log/epp_log.rb
Normal file
|
@ -0,0 +1,4 @@
|
|||
module ApiLog
|
||||
class EppLog < Db
|
||||
end
|
||||
end
|
4
app/models/api_log/repp_log.rb
Normal file
4
app/models/api_log/repp_log.rb
Normal file
|
@ -0,0 +1,4 @@
|
|||
module ApiLog
|
||||
class ReppLog < Db
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue