From 884ef466743ba443438cae5b95f2e5985bd6fb92 Mon Sep 17 00:00:00 2001 From: Xihai Luo Date: Wed, 21 Jun 2023 15:59:25 -0400 Subject: [PATCH] add back confirmable module to user model --- app/models/user.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/user.rb b/app/models/user.rb index caaae61498..9694d4ad98 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -12,7 +12,7 @@ class User < ApplicationRecord validates_with UserValidator - devise :database_authenticatable, :invitable, :recoverable, :validatable, :timeoutable, :trackable, :jwt_authenticatable, jwt_revocation_strategy: JwtDenylist + devise :database_authenticatable, :invitable, :recoverable, :validatable, :timeoutable, :trackable, :confirmable, :jwt_authenticatable, jwt_revocation_strategy: JwtDenylist belongs_to :casa_org