Files
railsgoat/app/controllers/paid_time_off_controller.rb
robbiepaul 298610b5f6
CI / test (3.4.1) (push) Has been cancelled
Initial commit (history cleared)
2026-04-29 11:21:39 +01: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