Create weapon_keys_controller.rb

This commit is contained in:
Justin Edmund 2022-03-01 23:33:28 -08:00
parent 82a6b0d598
commit 45c4cc5af6

View file

@ -0,0 +1,6 @@
class Api::V1::WeaponKeysController < Api::V1::ApiController
def all
@raids = WeaponKeys.all()
render :all, status: :ok
end
end