8 lines
142 B
Ruby
8 lines
142 B
Ruby
class PaidTimeOffController < ApplicationController
|
|
|
|
def index
|
|
@pto = current_user.paid_time_off
|
|
@schedule = Schedule.new
|
|
end
|
|
end
|