7 lines
115 B
Ruby
7 lines
115 B
Ruby
class PaidTimeOffController < ApplicationController
|
|
|
|
def index
|
|
@pto = current_user.paid_time_off
|
|
end
|
|
end
|