fga-gpp-mds/2017.1-Escola-X

View on GitHub
app/controllers/users_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
# File name: users_controller.rb
# Class name: UsersController
# Description: Controller used to making sense of the request users
class UsersController < ApplicationController
  include SessionsHelper

  def index
    if ( is_employee? )
      @alumns = Alumn.all
      @employees = Employee.all
      @parents = Parent.all
    else
      redirect_to "/errors/error_500"
    end
  end
end