7 lines
107 B
Ruby
7 lines
107 B
Ruby
|
class IndexController < ApplicationController
|
||
|
def index
|
||
|
session[:first_time] ||= Time.now
|
||
|
end
|
||
|
|
||
|
end
|