我的user.rb模型包含:
class User < ApplicationRecord
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable,
:confirmable, :lockable, :timeoutable, :omniauthable,
:jwt_authenticatable, jwt_revocation_strategy: JWTBlacklist
def send_devise_notification(notification, *args)
devise_mailer.send(notification, self, *args).deliver_later
end
end
我正在使用devise-jwt gem来登录我的rails api。
我的JWTBlacklist.rb模型包含:
class JwtBlacklist < ApplicationRecord
include Devise::JWT::RevocationStrategies::Blacklist
self.table_name = 'jwt_blacklist'
end
答案 0 :(得分:6)
您的User
课程正在寻找JWTBlacklist
,但您的文件正在定义JwtBlacklist
。您需要更改其中一个以匹配另一个。