expertiza/expertiza

View on GitHub
app/helpers/auth_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
42%
module AuthHelper
  def self.get_home_action(user)
    user.role.get_home_action
  rescue StandardError
    'drill'
  end

  def self.get_home_controller(user)
    user.role.get_home_controller
  rescue StandardError
    'tree_display'
  end
end