Files
railsgoat/app/controllers/paid_time_off_controller.rb
T
2017-12-05 18:46:21 -06:00

9 lines
172 B
Ruby

# frozen_string_literal: true
class PaidTimeOffController < ApplicationController
def index
@pto = current_user.paid_time_off
@schedule = Schedule.new
end
end