upsert method
- ChatId id,
- ChatCallCredentials credentials
Creates or updates the provided credentials
in the database.
Implementation
Future<void> upsert(ChatId id, ChatCallCredentials credentials) async {
_cache[id] = credentials;
await safe((db) async {
await db
.into(db.chatCredentials)
.insertReturning(
credentials.toDb(id),
mode: InsertMode.insertOrReplace,
);
});
_cache.remove(id);
}