class Lato::AuthenticationController

def signout_action

def signout_action
  session_destroy
  respond_to do |format|
    format.html { redirect_to lato.root_path }
    format.json { render json: {} }
  end
end