18F/dolores-landingham-slack-bot

View on GitHub
app/controllers/sessions_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class SessionsController < ApplicationController
  skip_before_action :authenticate_user!

  def new
  end

  def destroy
    signout_user!
    redirect_to new_session_url
  end

  def create
  end
end