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