userモデルに以下を追加するとログイン時の条件を追加できます。
1 2 3 |
def find_for_authentication(conditions) super(conditions.merge(active: true)) end |
active: true のところにuserモデルの条件を好きなように入れるといい感じになる
参考
スポンサードリンク
userモデルに以下を追加するとログイン時の条件を追加できます。
1 2 3 |
def find_for_authentication(conditions) super(conditions.merge(active: true)) end |
active: true のところにuserモデルの条件を好きなように入れるといい感じになる
スポンサードリンク