feat: convert Super notes to Markdown behind the scenes while publishing to Listed (#2064)

This commit is contained in:
Mo
2022-11-28 12:19:53 -06:00
committed by GitHub
parent 96e8dfdd31
commit cc2762a29d
5 changed files with 87 additions and 2 deletions

View File

@@ -295,6 +295,10 @@ export class SNApplication implements ApplicationInterface, AppGroupManagedAppli
return this.diskStorageService
}
public get actions(): InternalServices.SNActionsService {
return this.actionsManager
}
public computePrivateUsername(username: string): Promise<string | undefined> {
return ComputePrivateUsername(this.options.crypto, username)
}