blob: b9624cf3f5d5c26203d84d875e6b1687b42b976d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class TutorialsController < ApplicationController
def index
@tutorials = Tutorial.search(params[:q]).
includes([:tags]).
page(page).per(per_page)
end
def show
@tutorial = Tutorial.find(params[:id])
end
end
|