Class: Recruiter::ArticlesController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/recruiter/articles_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



5
6
7
8
# File 'app/controllers/recruiter/articles_controller.rb', line 5

def index
  @articles = scope
  respond_with(@articles)
end

#showObject



10
11
12
13
# File 'app/controllers/recruiter/articles_controller.rb', line 10

def show
  @article = scope.find(params[:id])
  respond_with(@article)
end