12 lines
221 B
Ruby
12 lines
221 B
Ruby
# frozen_string_literal: true
|
|
|
|
class WowPetsController < ProtectedController
|
|
def index
|
|
@pagy, @wow_pets = pagy(WowPet.includes(:users), items: 12)
|
|
end
|
|
|
|
def show
|
|
@wow_pet = WowPet.find(params[:id])
|
|
end
|
|
end
|