Class: Peoplefinder::HomeController

Inherits:
ApplicationController show all
Defined in:
app/controllers/peoplefinder/home_controller.rb

Instance Method Summary collapse

Methods included from FeatureHelper

#feature_disabled?, #feature_enabled?

Instance Method Details

#showObject



3
4
5
6
7
8
9
# File 'app/controllers/peoplefinder/home_controller.rb', line 3

def show
  @group = Group.department
  unless @group
    notice :top_level_group_needed
    redirect_to new_group_path
  end
end