Class: HrLite::AppraisalsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/hr_lite/appraisals_controller.rb

Overview

Employee view: shared appraisals only — drafts do not exist for them.

Instance Method Summary collapse

Instance Method Details

#indexObject



4
5
6
# File 'app/controllers/hr_lite/appraisals_controller.rb', line 4

def index
  @appraisals = paginate(own_shared.recent_first)
end

#showObject



8
9
10
# File 'app/controllers/hr_lite/appraisals_controller.rb', line 8

def show
  @appraisal = own_shared.find(params[:id])
end