class SessionsController < ApplicationController def new end def create end def destroy self.remove_old_session(session[:token]) end end