porkchopclub/porkchop

View on GitHub
app/controllers/api/v2/players_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  module V2
    class Api::V2::PlayersController < ApplicationController
      def index
        players = Player.all
        authorize! :read, players
        render json: players
      end
    end
  end
end