aidamanna/appetype

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

Summary

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

    def call
      @users = PaginateUsersQuery.new.call(params[:page])

      render 'users/index'
    end
  end
end