dannyighsu/ucb-senior-map

View on GitHub
app/controllers/map_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class MapController < ApplicationController

  def new
    if not current_user
      redirect_to root_path
    else
      @users = User.all
    end
  end
end