mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 04:04:55 +08:00
feat(users): Create user_key_store table and begin_totp API (#4577)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -57,6 +57,7 @@ pub struct MockDb {
|
||||
pub payouts: Arc<Mutex<Vec<store::payouts::Payouts>>>,
|
||||
pub authentications: Arc<Mutex<Vec<store::authentication::Authentication>>>,
|
||||
pub roles: Arc<Mutex<Vec<store::role::Role>>>,
|
||||
pub user_key_store: Arc<Mutex<Vec<store::user_key_store::UserKeyStore>>>,
|
||||
}
|
||||
|
||||
impl MockDb {
|
||||
@ -100,6 +101,7 @@ impl MockDb {
|
||||
payouts: Default::default(),
|
||||
authentications: Default::default(),
|
||||
roles: Default::default(),
|
||||
user_key_store: Default::default(),
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user