Commit e2034040 by Ngô Trung Hưng

fix bug applied_job

parent 2a8fd541
Pipeline #945 canceled with stages
in 0 seconds
......@@ -5,7 +5,7 @@ class ApplyJobController < ApplicationController
before_action :authenticate_user!
def index
@jobs = current_user.applied_jobs.order(created_at: :desc).page(params[:page])
@jobs = current_user.applied_jobs.order(created_at: :desc).page(params[:page]).per(6)
end
def apply
......
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