class DashboardController

The Dashboard configures the front page of the website.

Public Instance Methods

index() click to toggle source
# File app/controllers/dashboard_controller.rb, line 4
def index
    @active_devices = Device.find_all_by_active(true);
    @active_rule_sets = RuleSet.find_all_by_active(true);
end