fix ID4

parent 1d619912
Pipeline #1380 failed with stages
in 0 seconds
class JobsController < ApplicationController
def show
if params[:city_slug].present?
@city = City.find_by(slug: params[:city_slug])
@jobs = @city.jobs
@result = @city.name
city = City.find_by(slug: params[:city_slug])
jobs = city.jobs
@result = city.name
else
@industry = Industry.find_by(slug: params[:industry_slug])
@jobs = @industry.jobs
@result = @industry.name
industry = Industry.find_by(slug: params[:industry_slug])
jobs = industry.jobs
@result = industry.name
end
@total = @jobs.count
@jobs = @jobs.latest_jobs.page(params[:page])
@total = jobs.count
@jobs = jobs.latest_jobs.page(params[:page])
end
end
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment