10 lines
187 B
Ruby
10 lines
187 B
Ruby
class WowMountsController < ProtectedController
|
|
def index
|
|
@pagy, @wow_mounts = pagy(WowMount.all, items: 12)
|
|
end
|
|
|
|
def show
|
|
@wow_mount = WowMount.find(params[:id])
|
|
end
|
|
end
|