jdrago999/distribot-ui

View on GitHub
app/controllers/worker_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage

class WorkerController < ApplicationController
  before_filter :set_active_nav

  def list
    @workers = [ ]
  end

  def show
  end

  private

  def set_active_nav
    @active_nav = :workers
  end
end