# -*- coding: utf-8; -*- class WelcomeController < ApplicationController layout "welcome" 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