aidamanna/appetype

View on GitHub
app/controllers/menus/index_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Menus
  class IndexController < ApplicationController
    authorize_resource class: IndexController

    def call
      @menus = PaginateMenusQuery.new.call(params[:page])

      render 'menus/index'
    end
  end
end