roshiro/openws_one

View on GitHub
app/controllers/dashboard_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# Controller to handle Dashboard actions
class DashboardController < ApplicationController
  before_filter :authenticate_user!

  def index
  end
end