1)患者(ユーザー)ごとにindex表示したい
患者1 ーーー患者3の記録 患者2の記録のようになってしまった
staff/record/index.html.erb
def index
@records = Record.all(params[:patient_id]).page(params[:page]).per(7).reverse_order
end
↓↓↓↓↓↓
def index
@records = Record.where(patient_id: params[:patient_id]).page(params[:page]).per(7).reverse_order
end
ユーザーごとに投稿&自分の投稿一覧indexしか見えないのが正しい、 でも見えちゃう問題
``` def index @dialies = Dialy.all end としていた。他のユーザー記録が見える.... ```current_ whereを用いる
def index
@dialies = current_patient.dialies.all
あるいは
@dialies = Dialy.where( parient.id: current_patient.id)
#全体の中から絞って持ってくる
end