add creature and base rp_world

This commit is contained in:
2021-06-02 22:24:04 +02:00
parent 5b3da08707
commit 62464846a3
56 changed files with 432 additions and 13 deletions

View File

@@ -0,0 +1,9 @@
class RpWorldsController < ApplicationController
def index
@rp_worlds = RpWorld.all
end
def show
@rp_world = RpWorld.includes(:wow_characters).find(params[:id])
end
end