YutaGoto/salmon_run

View on GitHub
app/controllers/api/weapons_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Api
  class WeaponsController < Api::ApplicationController
    def index
      @weapons = Weapon.all
      render 'index', formats: :json, handlers: 'jbuilder'
    end
  end
end