tasafo/tasafo_jobs

View on GitHub
app/controllers/job_categories_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
class JobCategoriesController < ApplicationController
  before_action :get_category

  def jobs; end

  def resumes; end

  private

  def get_category
    @category = JobCategory.find(params[:job_category_id])
  end
end