File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ import WellKnown from './wellKnown'
23
23
import ActiveContacts from './active-contacts-api'
24
24
import QRCode from './qrcode-api'
25
25
import MetricsRouter from './metrics-api'
26
+ import Invitation from './invitation-api'
26
27
27
28
export default class TwakeServer {
28
29
conf : Config
@@ -154,6 +155,12 @@ export default class TwakeServer {
154
155
this . idServer . authenticate ,
155
156
this . logger
156
157
)
158
+ const invitationApi = Invitation (
159
+ this . conf ,
160
+ this . idServer . db ,
161
+ this . idServer . authenticate ,
162
+ this . logger
163
+ )
157
164
158
165
this . endpoints . use ( privateNoteApi )
159
166
this . endpoints . use ( mutualRoolsApi )
@@ -164,6 +171,7 @@ export default class TwakeServer {
164
171
this . endpoints . use ( activeContactsApi )
165
172
this . endpoints . use ( qrCodeApi )
166
173
this . endpoints . use ( metricsApi )
174
+ this . endpoints . use ( invitationApi )
167
175
168
176
if (
169
177
this . conf . opensearch_is_activated != null &&
You can’t perform that action at this time.
0 commit comments