@@ -31,6 +31,7 @@ import { SecretController } from "../secrets/SecretController";
31
31
import { ChangedItems } from "../sync/ChangedItems" ;
32
32
import { SyncController } from "../sync/SyncController" ;
33
33
import { SynchronizedCollection } from "../sync/SynchronizedCollection" ;
34
+ import { TagController } from "../tags/TagController" ;
34
35
import { TokenController } from "../tokens/TokenController" ;
35
36
import { IdentityController } from "./IdentityController" ;
36
37
import { IdentityDeletionProcessController } from "./IdentityDeletionProcessController" ;
@@ -63,6 +64,7 @@ export class AccountController {
63
64
public relationshipTemplates : RelationshipTemplateController ;
64
65
private synchronization : SyncController ;
65
66
public tokens : TokenController ;
67
+ public tags : TagController ;
66
68
67
69
private relationshipSecrets : RelationshipSecretController ;
68
70
private readonly _log : ILogger ;
@@ -213,6 +215,7 @@ export class AccountController {
213
215
this . relationshipTemplates = await new RelationshipTemplateController ( this , this . relationshipSecrets ) . init ( ) ;
214
216
this . messages = await new MessageController ( this ) . init ( ) ;
215
217
this . tokens = await new TokenController ( this ) . init ( ) ;
218
+ this . tags = await new TagController ( this ) . init ( ) ;
216
219
217
220
this . synchronization = await new SyncController ( this , this . dependencyOverrides , this . unpushedDatawalletModifications , this . config . datawalletEnabled ) . init ( ) ;
218
221
0 commit comments