Class: Recruiter::ArticlesController
Instance Method Summary
collapse
#crud_flash, #set_crud_error_flash, #set_crud_success_flash
Instance Method Details
#index ⇒ Object
5
6
7
8
|
# File 'app/controllers/recruiter/articles_controller.rb', line 5
def index
@articles = scope
respond_with(@articles)
end
|
#show ⇒ Object
10
11
12
13
14
15
|
# File 'app/controllers/recruiter/articles_controller.rb', line 10
def show
@article = scope.find(params[:id])
ensure_canonical_url(@article) do
respond_with(@article)
end
end
|