kirillshevch/logs

View on GitHub
app/controllers/logs/logs_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
require_dependency 'logs/application_controller'

module Logs
  class LogsController < ApplicationController
    include Logs::Concerns::LogsLoader
    include Logs::Concerns::Pagination

    def index; end

    def show; end
  end
end