mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 17:59:47 +02:00
11 lines
264 B
Ruby
11 lines
264 B
Ruby
class Admin::EppLogsController < ApplicationController
|
|
load_and_authorize_resource class: ApiLog::EppLog
|
|
|
|
def index
|
|
@epp_logs = ApiLog::EppLog.order(id: :desc).page(params[:page])
|
|
end
|
|
|
|
def show
|
|
@epp_log = ApiLog::EppLog.find(params[:id])
|
|
end
|
|
end
|