回答編集履歴

1

ソースの修正

2020/10/07 05:22

投稿

no1knows
no1knows

スコア3365

test CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  # 上長Aを選択肢から消すために、現在ログインしているIDを除外する
4
4
 
5
- User.where(superior: true).where( id != current_user.id )
5
+ User.where(superior: true).where.not( id: current_user.id )
6
6
 
7
7
  ```