-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update commit pointer to new head of main * port auth module from demo * rm `.js` from imports * update loggers with nested paths * rename services closer to our pattern * add tests * update changelog * update package.lock * update changelog * update submodule pointer * Update packages CHANGELOG.md * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * fix android build * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * update macos runner * update filename * update release asset name as well * fix mounting * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * specify macos-15 * try macos-13 * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * update provisioning profile * fix identity saving * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * fix backend tor test * Publish - @quiet/[email protected] - @quiet/[email protected] * Update packages CHANGELOG.md * Convert SigChainManager to NestJS service and integrate with ConnectionsManager * add sigchain saving and loading test * Add logging for setting and getting sigchains in LocalDbService * update changelog * Merge branch 'develop' into 2626-sigchain-persistence * restore unaltered provisioning profile * fix merge conflict inclusion * undo meaningless package json changes * inject localdbservice into sigchainservice * * Use prefix key instead of nesting when saving sigchains * Import LocalDBService into SigChainService * Improve async handling * add deletion test * fix error handling
- Loading branch information
Showing
19 changed files
with
506 additions
and
275 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Module } from '@nestjs/common' | ||
import { SigChainService } from './sigchain.service' | ||
import { LocalDbModule } from '../local-db/local-db.module' | ||
|
||
@Module({ | ||
providers: [SigChainService], | ||
exports: [SigChainService], | ||
imports: [LocalDbModule], | ||
}) | ||
export class SigChainModule {} |
Oops, something went wrong.