somleng/somleng

View on GitHub
app/controllers/dashboard/available_phone_numbers_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Dashboard
  class AvailablePhoneNumbersController < DashboardController
    def index
      @resources = paginate_resources(apply_filters(scope))
    end

    private

    def scope
      current_account.available_phone_numbers
    end

    def filter_class(*)
      AvailablePhoneNumberFilter
    end
  end
end