gistflow/gistflow

View on GitHub
app/controllers/sessions_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SessionsController < ApplicationController
  def destroy
    self.current_user = nil
    redirect_to root_path
  end
end