7 lines
107 B
Ruby

class IndexController < ApplicationController
def index
session[:first_time] ||= Time.now
end
end