7 lines
108 B
Ruby
7 lines
108 B
Ruby
class HomeController < ApplicationController
|
|
|
|
def index
|
|
redirect_to forms_url if logged_in?
|
|
end
|
|
end
|