diff --git a/app/controllers/api/v1/weapon_keys_controller.rb b/app/controllers/api/v1/weapon_keys_controller.rb new file mode 100644 index 0000000..cb4a641 --- /dev/null +++ b/app/controllers/api/v1/weapon_keys_controller.rb @@ -0,0 +1,6 @@ +class Api::V1::WeaponKeysController < Api::V1::ApiController + def all + @raids = WeaponKeys.all() + render :all, status: :ok + end +end \ No newline at end of file