Skip to content

Commit a9cb444

Browse files
committed
Add issuer v2 to controller base. Controller had already been defined.
1 parent 5013d7a commit a9cb444

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

aries_cloudcontroller/aries_controller_base.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
from .controllers.wallet import WalletController
1313
from .controllers.definitions import DefinitionsController
1414
from .controllers.issuer import IssuerController
15+
from .controllers.issuer_v2 import IssuerV2Controller
1516
from .controllers.proof import ProofController
1617
from .controllers.ledger import LedgerController
1718
from .controllers.credential import CredentialController
@@ -85,6 +86,14 @@ def __post_init__(self):
8586

8687
self.didexchange = DidExchangeController(self.admin_url, self.client_session)
8788

89+
self.issuer_v2 = IssuerV2Controller(
90+
self.admin_url,
91+
self.client_session,
92+
self.connections,
93+
self.wallet,
94+
self.definitions,
95+
)
96+
8897
self.issuer = IssuerController(
8998
self.admin_url,
9099
self.client_session,

0 commit comments

Comments
 (0)