9 lines
226 B
Ruby
9 lines
226 B
Ruby
# -*- coding: utf-8; -*-
|
|
class WelcomeController < ApplicationController
|
|
def index
|
|
# Ask Devise whether or not the user is already signed in.
|
|
if user_signed_in? then
|
|
redirect_to contacts_path
|
|
end
|
|
end
|
|
end
|