10 lines
177 B
Ruby
10 lines
177 B
Ruby
class WowPetsController < ProtectedController
|
|
def index
|
|
@pagy, @wow_pets = pagy(WowPet.all, items: 12)
|
|
end
|
|
|
|
def show
|
|
@wow_pet = WowPet.find(params[:id])
|
|
end
|
|
end
|