@verii/endpoints-organizations-registrar 1.0.0-pre.1752076816
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/NOTICE +1 -0
- package/README.md +3 -0
- package/package.json +86 -0
- package/src/config/abi.json +1 -0
- package/src/config/config.js +261 -0
- package/src/controllers/consents/autohooks.js +6 -0
- package/src/controllers/consents/controller.js +106 -0
- package/src/controllers/consents/schemas/consent-response.schema.js +45 -0
- package/src/controllers/did-web-host/controller.js +64 -0
- package/src/controllers/groups/autohooks.js +10 -0
- package/src/controllers/groups/controller.js +172 -0
- package/src/controllers/groups/schemas/group.schema.json +22 -0
- package/src/controllers/groups/schemas/index.js +7 -0
- package/src/controllers/groups/schemas/modify-group.schema.json +25 -0
- package/src/controllers/image_upload/controller.js +48 -0
- package/src/controllers/invitations/controller.js +79 -0
- package/src/controllers/organizations/_did/autohooks.js +16 -0
- package/src/controllers/organizations/_did/controller.js +617 -0
- package/src/controllers/organizations/_did/invitations/_invitationId/autohooks.js +16 -0
- package/src/controllers/organizations/_did/invitations/_invitationId/controller.js +217 -0
- package/src/controllers/organizations/_did/invitations/controller.js +197 -0
- package/src/controllers/organizations/_did/keys/controller.js +141 -0
- package/src/controllers/organizations/_did/services/controller.js +195 -0
- package/src/controllers/organizations/_did/signatories/controller.js +63 -0
- package/src/controllers/organizations/autohooks.js +65 -0
- package/src/controllers/organizations/controller.js +322 -0
- package/src/controllers/organizations/full/controller.js +285 -0
- package/src/controllers/organizations/plugins.js +21 -0
- package/src/controllers/organizations/schemas/add-key-body.schema.json +35 -0
- package/src/controllers/organizations/schemas/create-did-service.schema.json +70 -0
- package/src/controllers/organizations/schemas/did-key.schema.json +178 -0
- package/src/controllers/organizations/schemas/full-organization.schema.json +35 -0
- package/src/controllers/organizations/schemas/index.js +33 -0
- package/src/controllers/organizations/schemas/invitationCodeProperty.schema.json +3 -0
- package/src/controllers/organizations/schemas/organization-ids.schema.json +34 -0
- package/src/controllers/organizations/schemas/organization-kyb-profile-creation.schema.json +26 -0
- package/src/controllers/organizations/schemas/organization-profile-creation.schema.json +20 -0
- package/src/controllers/organizations/schemas/organization-profile-update.schema.json +19 -0
- package/src/controllers/organizations/schemas/organization-profile-verifiable-credential.schema.json +25 -0
- package/src/controllers/organizations/schemas/organization-registry-service-response.schema.json +26 -0
- package/src/controllers/organizations/schemas/organization-service.schema.json +34 -0
- package/src/controllers/organizations/schemas/organization-verified-profile.schema.json +123 -0
- package/src/controllers/organizations/schemas/organization.search-profile.query-params.schema.json +50 -0
- package/src/controllers/organizations/schemas/organization.search.query-params.schema.json +42 -0
- package/src/controllers/reference/controller.js +103 -0
- package/src/controllers/resolve-did/controller.js +45 -0
- package/src/controllers/resolve-did/resolve-did.js +30 -0
- package/src/controllers/resolve-did/schemas/did-doc.schema.json +155 -0
- package/src/controllers/resolve-did/schemas/did-proof.schema.json +44 -0
- package/src/controllers/resolve-did/schemas/index.js +26 -0
- package/src/controllers/resolve-did/schemas/public-key.schema.json +173 -0
- package/src/controllers/resolve-kid/controller.js +76 -0
- package/src/controllers/resolve-kid/public-key-formats.js +8 -0
- package/src/controllers/service-types/controller.js +81 -0
- package/src/controllers/setup_image_upload/controller.js +99 -0
- package/src/controllers/signatories/controller.js +43 -0
- package/src/controllers/users/autohooks.js +10 -0
- package/src/controllers/users/controller.js +221 -0
- package/src/controllers/users/schemas/base-user.schema.json +55 -0
- package/src/controllers/users/schemas/index.js +4 -0
- package/src/controllers/users/schemas/modify-user.schema.js +17 -0
- package/src/controllers/users/schemas/user.schema.js +20 -0
- package/src/entities/groups/domain/constants.js +21 -0
- package/src/entities/groups/domain/index.js +19 -0
- package/src/entities/groups/factories/groups-factory.js +48 -0
- package/src/entities/groups/factories/index.js +17 -0
- package/src/entities/groups/index.js +19 -0
- package/src/entities/groups/repo.js +122 -0
- package/src/entities/images/domain/constant.js +11 -0
- package/src/entities/images/domain/index.js +3 -0
- package/src/entities/images/extension/activate.extension.js +35 -0
- package/src/entities/images/extension/deactivate.extension.js +27 -0
- package/src/entities/images/extension/find-by-url.extension.js +24 -0
- package/src/entities/images/extension/index.js +5 -0
- package/src/entities/images/factories/images-factory.js +43 -0
- package/src/entities/images/factories/index.js +17 -0
- package/src/entities/images/index.js +5 -0
- package/src/entities/images/repo.js +43 -0
- package/src/entities/images/schema/image-metadata.schema.js +58 -0
- package/src/entities/images/schema/index.js +3 -0
- package/src/entities/index.js +31 -0
- package/src/entities/invitations/domains/build-invitation-url.js +14 -0
- package/src/entities/invitations/domains/get-given-family-name-from-name.js +20 -0
- package/src/entities/invitations/domains/index.js +7 -0
- package/src/entities/invitations/domains/init-invitation-emails.js +17 -0
- package/src/entities/invitations/domains/is-invitation-expired.js +5 -0
- package/src/entities/invitations/domains/validate-invitee-email.js +18 -0
- package/src/entities/invitations/factories/index.js +17 -0
- package/src/entities/invitations/factories/invitations-factory.js +51 -0
- package/src/entities/invitations/index.js +6 -0
- package/src/entities/invitations/orchestrators/accept-invitation.js +24 -0
- package/src/entities/invitations/orchestrators/index.js +4 -0
- package/src/entities/invitations/orchestrators/send-email-invitee.js +36 -0
- package/src/entities/invitations/repo.js +37 -0
- package/src/entities/invitations/schemas/add-invitation-body.js +122 -0
- package/src/entities/invitations/schemas/get-invitation-response-body.js +20 -0
- package/src/entities/invitations/schemas/index.js +5 -0
- package/src/entities/invitations/schemas/invitation-response-item-body.js +61 -0
- package/src/entities/kms/factories/index.js +17 -0
- package/src/entities/kms/factories/kms-factory.js +31 -0
- package/src/entities/monitors/index.js +17 -0
- package/src/entities/monitors/orchestrators/index.js +17 -0
- package/src/entities/monitors/orchestrators/monitors.js +230 -0
- package/src/entities/oauth/domain/constants.js +23 -0
- package/src/entities/oauth/domain/index.js +5 -0
- package/src/entities/oauth/domain/roles.js +92 -0
- package/src/entities/oauth/domain/scopes.js +35 -0
- package/src/entities/oauth/index.js +4 -0
- package/src/entities/oauth/orchestrators/auth0-provisioner.js +293 -0
- package/src/entities/oauth/orchestrators/index.js +3 -0
- package/src/entities/organization-keys/domains/build-organization-key.js +50 -0
- package/src/entities/organization-keys/domains/constants.js +30 -0
- package/src/entities/organization-keys/domains/extract-verification-method-from-byo-did-document.js +38 -0
- package/src/entities/organization-keys/domains/find-key-by-purpose.js +6 -0
- package/src/entities/organization-keys/domains/index.js +10 -0
- package/src/entities/organization-keys/domains/jwk-to-hex-key-transformer.js +13 -0
- package/src/entities/organization-keys/domains/map-key-response.js +29 -0
- package/src/entities/organization-keys/domains/validate-non-custodial-key.js +11 -0
- package/src/entities/organization-keys/domains/validate-organization-key.js +42 -0
- package/src/entities/organization-keys/factories/index.js +17 -0
- package/src/entities/organization-keys/factories/organization-keys-factory.js +55 -0
- package/src/entities/organization-keys/index.js +5 -0
- package/src/entities/organization-keys/orchestrators/add-key-to-did-doc.js +19 -0
- package/src/entities/organization-keys/orchestrators/add-key.js +155 -0
- package/src/entities/organization-keys/orchestrators/add-operator-keys.js +46 -0
- package/src/entities/organization-keys/orchestrators/delete-key.js +93 -0
- package/src/entities/organization-keys/orchestrators/get-key.js +39 -0
- package/src/entities/organization-keys/orchestrators/index.js +24 -0
- package/src/entities/organization-keys/orchestrators/resolve-verification-method-byo-did.js +28 -0
- package/src/entities/organization-keys/repos/repo.js +48 -0
- package/src/entities/organization-services/adapters/index.js +21 -0
- package/src/entities/organization-services/adapters/init-provision-auth0-client-grants.js +44 -0
- package/src/entities/organization-services/adapters/init-provision-auth0-clients.js +56 -0
- package/src/entities/organization-services/adapters/update-blockchain-permissions-from-permitted-services.js +118 -0
- package/src/entities/organization-services/domains/activate-services.js +12 -0
- package/src/entities/organization-services/domains/build-organizations-services.js +38 -0
- package/src/entities/organization-services/domains/build-public-services.js +19 -0
- package/src/entities/organization-services/domains/constants.js +32 -0
- package/src/entities/organization-services/domains/extract-cao-service-refs.js +10 -0
- package/src/entities/organization-services/domains/extract-service-endpoint-did.js +10 -0
- package/src/entities/organization-services/domains/get-service-consent-type.js +16 -0
- package/src/entities/organization-services/domains/get-service-types-from-categories.js +18 -0
- package/src/entities/organization-services/domains/index.js +17 -0
- package/src/entities/organization-services/domains/is-new-node-operator-service.js +25 -0
- package/src/entities/organization-services/domains/is-service-category.js +31 -0
- package/src/entities/organization-services/domains/normalize-service-endpoint.js +6 -0
- package/src/entities/organization-services/domains/select-activated-services.js +8 -0
- package/src/entities/organization-services/domains/transform-profile-service.js +88 -0
- package/src/entities/organization-services/domains/validate-cao-service-refs.js +25 -0
- package/src/entities/organization-services/domains/validate-service-credential-type.js +47 -0
- package/src/entities/organization-services/domains/validate-service-endpoint.js +35 -0
- package/src/entities/organization-services/domains/validate-service-fields-by-service-type.js +37 -0
- package/src/entities/organization-services/domains/validate-service-id-uniqueness.js +19 -0
- package/src/entities/organization-services/domains/validate-service-key-purposes.js +56 -0
- package/src/entities/organization-services/domains/validate-service-type.js +12 -0
- package/src/entities/organization-services/domains/validate-service.js +80 -0
- package/src/entities/organization-services/domains/validate-services-for-delete.js +32 -0
- package/src/entities/organization-services/index.js +5 -0
- package/src/entities/organization-services/orchestrators/add-service.js +106 -0
- package/src/entities/organization-services/orchestrators/delete-service.js +142 -0
- package/src/entities/organization-services/orchestrators/get-service.js +36 -0
- package/src/entities/organization-services/orchestrators/index.js +8 -0
- package/src/entities/organization-services/orchestrators/init-add-service-to-organization.js +141 -0
- package/src/entities/organization-services/orchestrators/load-cao-service-refs.js +56 -0
- package/src/entities/organization-services/orchestrators/update-service.js +103 -0
- package/src/entities/organizations/adapters/index.js +6 -0
- package/src/entities/organizations/adapters/init-organization-registrar-emails.js +215 -0
- package/src/entities/organizations/adapters/init-send-activation-emails-to-caos.js +89 -0
- package/src/entities/organizations/adapters/send-email-invitation-accepted-to-inviter.js +70 -0
- package/src/entities/organizations/adapters/send-email-notifications.js +212 -0
- package/src/entities/organizations/domains/build-custodied-did-web.js +12 -0
- package/src/entities/organizations/domains/build-full-organization-response.js +40 -0
- package/src/entities/organizations/domains/build-organization-modifications-on-service-change.js +82 -0
- package/src/entities/organizations/domains/build-profile-vc-url.js +8 -0
- package/src/entities/organizations/domains/build-profile-verifiable-credential.js +36 -0
- package/src/entities/organizations/domains/build-public-profile.js +9 -0
- package/src/entities/organizations/domains/constants.js +54 -0
- package/src/entities/organizations/domains/index.js +17 -0
- package/src/entities/organizations/domains/organization-vc-checks.js +49 -0
- package/src/entities/organizations/domains/parse-profile-to-csv.js +41 -0
- package/src/entities/organizations/domains/prepare-profile-vc.js +28 -0
- package/src/entities/organizations/domains/profile-name-normalization.js +5 -0
- package/src/entities/organizations/domains/validate-byo-did-keys.js +28 -0
- package/src/entities/organizations/domains/validate-profile-name.js +48 -0
- package/src/entities/organizations/domains/validate-profile-website.js +17 -0
- package/src/entities/organizations/domains/validate-update-profile.js +11 -0
- package/src/entities/organizations/factories/index.js +17 -0
- package/src/entities/organizations/factories/organizations-factory.js +180 -0
- package/src/entities/organizations/index.js +6 -0
- package/src/entities/organizations/orchestrators/add-primary-permissions.js +28 -0
- package/src/entities/organizations/orchestrators/build-custodied-organization.js +92 -0
- package/src/entities/organizations/orchestrators/build-non-custodied-organization.js +83 -0
- package/src/entities/organizations/orchestrators/index.js +6 -0
- package/src/entities/organizations/orchestrators/init-create-organization.js +221 -0
- package/src/entities/organizations/orchestrators/init-provision-group.js +48 -0
- package/src/entities/organizations/orchestrators/verify-profile-website-unique.js +15 -0
- package/src/entities/organizations/repos/find-caos-extension.js +49 -0
- package/src/entities/organizations/repos/index.js +17 -0
- package/src/entities/organizations/repos/repo.js +156 -0
- package/src/entities/organizations/repos/search-by-aggregation-extension.js +128 -0
- package/src/entities/organizations/repos/transform-did-filter.js +13 -0
- package/src/entities/organizations/repos/transform-organization-filter.js +106 -0
- package/src/entities/registrar-consents/constants.js +10 -0
- package/src/entities/registrar-consents/factories/index.js +17 -0
- package/src/entities/registrar-consents/factories/registrar-consents-factory.js +38 -0
- package/src/entities/registrar-consents/index.js +3 -0
- package/src/entities/registrar-consents/repos/registrar-consent-repo-extension.js +55 -0
- package/src/entities/registrar-consents/repos/repo.js +31 -0
- package/src/entities/signatories/domain/constants.js +12 -0
- package/src/entities/signatories/domain/index.js +4 -0
- package/src/entities/signatories/domain/organization-emails.js +29 -0
- package/src/entities/signatories/factories/index.js +17 -0
- package/src/entities/signatories/factories/signatory-status-factory.js +53 -0
- package/src/entities/signatories/index.js +5 -0
- package/src/entities/signatories/orchestrators/approve-reminder.js +24 -0
- package/src/entities/signatories/orchestrators/index.js +6 -0
- package/src/entities/signatories/orchestrators/reject-reminder.js +17 -0
- package/src/entities/signatories/orchestrators/send-reminders.js +102 -0
- package/src/entities/signatories/orchestrators/validate-auth-code.js +56 -0
- package/src/entities/signatories/repos/index.js +3 -0
- package/src/entities/signatories/repos/repo.js +35 -0
- package/src/entities/signatories/repos/signatory-status-state-repo-extension.js +124 -0
- package/src/entities/users/domains/constants.js +40 -0
- package/src/entities/users/domains/index.js +4 -0
- package/src/entities/users/domains/user-registrar-emails.js +52 -0
- package/src/entities/users/index.js +4 -0
- package/src/entities/users/orchestrators/create-auth0-user.js +60 -0
- package/src/entities/users/orchestrators/get-or-create-auth0-user.js +63 -0
- package/src/entities/users/orchestrators/index.js +22 -0
- package/src/entities/users/orchestrators/user-management.js +157 -0
- package/src/fetchers/index.js +19 -0
- package/src/fetchers/monitoring/index.js +9 -0
- package/src/fetchers/monitoring/monitor-add-to-page-fetcher.js +18 -0
- package/src/fetchers/monitoring/monitor-create-fetcher.js +23 -0
- package/src/fetchers/monitoring/monitor-delete-fetcher.js +6 -0
- package/src/fetchers/monitoring/monitor-get-all-fetcher.js +6 -0
- package/src/fetchers/monitoring/section-create-fetcher.js +16 -0
- package/src/fetchers/monitoring/section-get-all-fetcher.js +6 -0
- package/src/fetchers/monitoring/service-version-fetcher.js +6 -0
- package/src/helpers/init-permissions-contract.js +48 -0
- package/src/index.js +23 -0
- package/src/init-server.js +91 -0
- package/src/organizations-registrar-endpoints.js +68 -0
- package/src/plugins/authorization.js +233 -0
- package/src/plugins/index.js +4 -0
- package/src/plugins/pubsub-plugin.js +82 -0
- package/src/subscribers/notify-caos.js +63 -0
- package/src/subscribers/notify-inviters.js +42 -0
- package/src/subscribers/notify-monitoring.js +40 -0
- package/src/subscribers/notify-signatory.js +51 -0
- package/src/subscribers/notify-support-and-groups.js +95 -0
- package/src/templates/invitee-invitation-email-body.hbs +13 -0
- package/src/templates/invitee-invitation-email-subject.hbs +1 -0
- package/src/templates/signatory-approval-email-body.hbs +92 -0
- package/src/templates/support-organization-created-body.hbs +17 -0
- package/src/templates/support-organization-created-subject.hbs +1 -0
- package/src/templates/support-signatory-max-reminders-reached-email-body.hbs +6 -0
- package/src/templates/support-signatory-max-reminders-reached-email-subject.hbs +1 -0
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
const { omit, partition, isNumber, reduce } = require('lodash/fp');
|
|
2
|
+
const {
|
|
3
|
+
ServiceCategories,
|
|
4
|
+
ServiceTypesOfServiceCategory,
|
|
5
|
+
} = require('@verii/organizations-registry');
|
|
6
|
+
const {
|
|
7
|
+
DEFAULT_SIZE,
|
|
8
|
+
DEFAULT_SKIP,
|
|
9
|
+
transformToSortDocument,
|
|
10
|
+
} = require('@verii/rest-queries');
|
|
11
|
+
|
|
12
|
+
const {
|
|
13
|
+
getServiceTypesFromCategories,
|
|
14
|
+
} = require('../../organization-services/domains');
|
|
15
|
+
|
|
16
|
+
const { transformDidFilter } = require('./transform-did-filter');
|
|
17
|
+
|
|
18
|
+
const searchByAggregationExtension = (parent) => ({
|
|
19
|
+
searchByAggregation: (input) => {
|
|
20
|
+
const serviceTypes = getServiceTypesFromCategories(input);
|
|
21
|
+
const aggregationPipeline = [];
|
|
22
|
+
|
|
23
|
+
const matchStage = {
|
|
24
|
+
$match: {
|
|
25
|
+
activatedServiceIds: {
|
|
26
|
+
$exists: true,
|
|
27
|
+
},
|
|
28
|
+
deletedAt: { $exists: false },
|
|
29
|
+
...transformIdFilter(input),
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
if (input.q) {
|
|
34
|
+
matchStage.$match['profile.name'] = {
|
|
35
|
+
$regex: new RegExp(input.q, 'igu'),
|
|
36
|
+
};
|
|
37
|
+
}
|
|
38
|
+
aggregationPipeline.push(matchStage);
|
|
39
|
+
|
|
40
|
+
if (serviceTypes) {
|
|
41
|
+
aggregationPipeline.push(buildServiceAggregationStage(serviceTypes));
|
|
42
|
+
aggregationPipeline.push({
|
|
43
|
+
$match: {
|
|
44
|
+
services: { $type: 'array', $ne: [] },
|
|
45
|
+
},
|
|
46
|
+
});
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
aggregationPipeline.push(buildSortStage(input));
|
|
50
|
+
aggregationPipeline.push(buildPageSkipStage(input));
|
|
51
|
+
aggregationPipeline.push(buildPageSizeStage(input));
|
|
52
|
+
|
|
53
|
+
return parent.collection().aggregate(aggregationPipeline).toArray();
|
|
54
|
+
},
|
|
55
|
+
});
|
|
56
|
+
const ISSUER_SERVICE_TYPES =
|
|
57
|
+
ServiceTypesOfServiceCategory[ServiceCategories.Issuer];
|
|
58
|
+
|
|
59
|
+
const transformIdFilter = (input) =>
|
|
60
|
+
input?.filter?.did == null
|
|
61
|
+
? {}
|
|
62
|
+
: transformDidFilter({
|
|
63
|
+
...omit(['did'], input.filter),
|
|
64
|
+
'didDoc.id': { $in: input.filter.did },
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
const buildServiceAggregationStage = (serviceTypes) => {
|
|
68
|
+
const [issuerServiceTypes, nonIssuerServiceTypes] = partition(
|
|
69
|
+
(s) => ISSUER_SERVICE_TYPES.includes(s),
|
|
70
|
+
serviceTypes
|
|
71
|
+
);
|
|
72
|
+
|
|
73
|
+
const projectStage = {
|
|
74
|
+
$project: {
|
|
75
|
+
didDoc: 1,
|
|
76
|
+
profile: 1,
|
|
77
|
+
activatedServiceIds: 1,
|
|
78
|
+
verifiableCredentialJwt: 1,
|
|
79
|
+
services: {
|
|
80
|
+
$filter: {
|
|
81
|
+
input: '$services',
|
|
82
|
+
as: 'itemService',
|
|
83
|
+
cond: {
|
|
84
|
+
$and: [
|
|
85
|
+
{
|
|
86
|
+
$in: [
|
|
87
|
+
'$$itemService.type',
|
|
88
|
+
[...issuerServiceTypes, ...nonIssuerServiceTypes],
|
|
89
|
+
],
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
$in: ['$$itemService.id', '$activatedServiceIds'],
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
},
|
|
98
|
+
},
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
return projectStage;
|
|
102
|
+
};
|
|
103
|
+
|
|
104
|
+
const buildSortStage = (input) => {
|
|
105
|
+
const $sort = reduce(
|
|
106
|
+
(acc, el) => ({ ...acc, ...{ [el[0]]: el[1] } }),
|
|
107
|
+
{},
|
|
108
|
+
transformToSortDocument(input)
|
|
109
|
+
);
|
|
110
|
+
|
|
111
|
+
return { $sort };
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
const buildPageSizeStage = ({ page }) => {
|
|
115
|
+
if (!isNumber(page?.size)) {
|
|
116
|
+
return { $limit: DEFAULT_SIZE };
|
|
117
|
+
}
|
|
118
|
+
return { $limit: page.size };
|
|
119
|
+
};
|
|
120
|
+
|
|
121
|
+
const buildPageSkipStage = ({ page } = {}) => {
|
|
122
|
+
if (!isNumber(page?.skip) || !isNumber(page?.size)) {
|
|
123
|
+
return { $skip: DEFAULT_SKIP * DEFAULT_SIZE };
|
|
124
|
+
}
|
|
125
|
+
return { $skip: page.skip * page.size };
|
|
126
|
+
};
|
|
127
|
+
|
|
128
|
+
module.exports = { searchByAggregationExtension };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const { omit } = require('lodash/fp');
|
|
2
|
+
|
|
3
|
+
const transformDidFilter = (filter) => {
|
|
4
|
+
const key = 'didDoc.id';
|
|
5
|
+
const val = filter[key];
|
|
6
|
+
|
|
7
|
+
return {
|
|
8
|
+
...omit([key], filter),
|
|
9
|
+
$or: [{ [key]: val }, { 'didDoc.alsoKnownAs': val }],
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
module.exports = { transformDidFilter };
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2025 Velocity Team
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
const { flow, isEmpty, omit, partition } = require('lodash/fp');
|
|
19
|
+
const {
|
|
20
|
+
ServiceCategories,
|
|
21
|
+
ServiceTypesOfServiceCategory,
|
|
22
|
+
} = require('@verii/organizations-registry');
|
|
23
|
+
const { initTransformToFinder } = require('@verii/rest-queries');
|
|
24
|
+
const { tableRegistry } = require('@spencejs/spence-mongo-repos');
|
|
25
|
+
const {
|
|
26
|
+
getServiceTypesFromCategories,
|
|
27
|
+
} = require('../../organization-services/domains');
|
|
28
|
+
|
|
29
|
+
const ISSUER_SERVICE_TYPES =
|
|
30
|
+
ServiceTypesOfServiceCategory[ServiceCategories.Issuer];
|
|
31
|
+
|
|
32
|
+
const transformServiceTypeFilter = (input) => {
|
|
33
|
+
const serviceTypes = getServiceTypesFromCategories(input);
|
|
34
|
+
return input?.filter?.serviceTypes == null
|
|
35
|
+
? input
|
|
36
|
+
: {
|
|
37
|
+
...input,
|
|
38
|
+
filter: {
|
|
39
|
+
...omit(['serviceTypes', 'credentialTypes'], input.filter),
|
|
40
|
+
services: {
|
|
41
|
+
$elemMatch: buildRegistrarServiceElemMatch(input, serviceTypes),
|
|
42
|
+
},
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
|
|
47
|
+
const transformIdFilter = (input) =>
|
|
48
|
+
input?.filter?.did == null
|
|
49
|
+
? input
|
|
50
|
+
: {
|
|
51
|
+
...input,
|
|
52
|
+
filter: {
|
|
53
|
+
...omit(['did'], input.filter),
|
|
54
|
+
'didDoc.id': { $in: input.filter.did },
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
const buildRegistrarServiceElemMatch = (input, serviceTypes) => {
|
|
58
|
+
const [issuerServiceTypes, nonIssuerServiceTypes] = partition(
|
|
59
|
+
(s) => ISSUER_SERVICE_TYPES.includes(s),
|
|
60
|
+
serviceTypes
|
|
61
|
+
);
|
|
62
|
+
|
|
63
|
+
if (isEmpty(issuerServiceTypes)) {
|
|
64
|
+
return {
|
|
65
|
+
type: {
|
|
66
|
+
$in: nonIssuerServiceTypes,
|
|
67
|
+
},
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
if (isEmpty(input?.filter?.credentialTypes)) {
|
|
72
|
+
return {
|
|
73
|
+
type: {
|
|
74
|
+
$in: serviceTypes,
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
return {
|
|
80
|
+
$or: [
|
|
81
|
+
{
|
|
82
|
+
type: {
|
|
83
|
+
$in: issuerServiceTypes,
|
|
84
|
+
},
|
|
85
|
+
credentialTypes: {
|
|
86
|
+
$elemMatch: { $in: input.filter.credentialTypes },
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
type: {
|
|
91
|
+
$in: nonIssuerServiceTypes,
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
const initTransformOrganizationFilter = () =>
|
|
99
|
+
initTransformToFinder(tableRegistry.organizations(), {
|
|
100
|
+
transformToFilterDocument: flow(
|
|
101
|
+
transformIdFilter,
|
|
102
|
+
transformServiceTypeFilter
|
|
103
|
+
),
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
module.exports = { initTransformOrganizationFilter };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2025 Velocity Team
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
module.exports = { ...require('./registrar-consents-factory') };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2025 Velocity Team
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
const { register } = require('@spencejs/spence-factories');
|
|
19
|
+
|
|
20
|
+
const { testRegistrarSuperUser } = require('@verii/tests-helpers');
|
|
21
|
+
const consentsRepoPlugin = require('../repos/repo');
|
|
22
|
+
const { ConsentTypes } = require('../../index');
|
|
23
|
+
|
|
24
|
+
module.exports = (app) => {
|
|
25
|
+
return register(
|
|
26
|
+
'registrarConsent',
|
|
27
|
+
consentsRepoPlugin(app)({ config: app.config }),
|
|
28
|
+
async (overrides) => {
|
|
29
|
+
return {
|
|
30
|
+
userId: testRegistrarSuperUser.sub,
|
|
31
|
+
consentId: 'l-sJmvte2ku',
|
|
32
|
+
version: 1,
|
|
33
|
+
type: ConsentTypes.RegistrarAppTerms,
|
|
34
|
+
...overrides(),
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
);
|
|
38
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023 Velocity Team
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
const { map } = require('lodash/fp');
|
|
18
|
+
const { nanoid } = require('nanoid');
|
|
19
|
+
|
|
20
|
+
const registrarConsentRepoExtension = (parent) => ({
|
|
21
|
+
registerConsent: (
|
|
22
|
+
{ userId, organizationId, type, version, ...rest },
|
|
23
|
+
...args
|
|
24
|
+
) => {
|
|
25
|
+
return parent.insert(
|
|
26
|
+
{
|
|
27
|
+
consentId: nanoid(),
|
|
28
|
+
userId,
|
|
29
|
+
organizationId,
|
|
30
|
+
version,
|
|
31
|
+
type,
|
|
32
|
+
...rest,
|
|
33
|
+
},
|
|
34
|
+
...args
|
|
35
|
+
);
|
|
36
|
+
},
|
|
37
|
+
registerConsents: (consents, ...args) => {
|
|
38
|
+
const consentsForInsert = map((consent) => {
|
|
39
|
+
const { userId, organizationId, type, version, ...rest } = consent;
|
|
40
|
+
return {
|
|
41
|
+
consentId: nanoid(),
|
|
42
|
+
userId,
|
|
43
|
+
organizationId,
|
|
44
|
+
version,
|
|
45
|
+
type,
|
|
46
|
+
createdAt: new Date(),
|
|
47
|
+
...rest,
|
|
48
|
+
};
|
|
49
|
+
}, consents);
|
|
50
|
+
return parent.insertMany(consentsForInsert, ...args);
|
|
51
|
+
},
|
|
52
|
+
extensions: parent.extensions.concat(['registrarConsentRepoExtension']),
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
module.exports = { registrarConsentRepoExtension };
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const {
|
|
2
|
+
repoFactory,
|
|
3
|
+
autoboxIdsExtension,
|
|
4
|
+
} = require('@spencejs/spence-mongo-repos');
|
|
5
|
+
const {
|
|
6
|
+
registrarConsentRepoExtension,
|
|
7
|
+
} = require('./registrar-consent-repo-extension');
|
|
8
|
+
|
|
9
|
+
module.exports = (app, options, next = () => {}) => {
|
|
10
|
+
next();
|
|
11
|
+
return repoFactory(
|
|
12
|
+
{
|
|
13
|
+
name: 'registrarConsents',
|
|
14
|
+
entityName: 'registrarConsents',
|
|
15
|
+
defaultProjection: {
|
|
16
|
+
_id: 1,
|
|
17
|
+
consentId: 1,
|
|
18
|
+
type: 1,
|
|
19
|
+
version: 1,
|
|
20
|
+
userId: 1,
|
|
21
|
+
organizationId: 1,
|
|
22
|
+
serviceId: 1,
|
|
23
|
+
createdAt: 1,
|
|
24
|
+
},
|
|
25
|
+
timestampKeys: { createdAt: 'createdAt', updatedAt: 'updatedAt' },
|
|
26
|
+
mutable: false,
|
|
27
|
+
extensions: [autoboxIdsExtension, registrarConsentRepoExtension],
|
|
28
|
+
},
|
|
29
|
+
app
|
|
30
|
+
);
|
|
31
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
const titleMap = {
|
|
2
|
+
approve: 'Approval',
|
|
3
|
+
reject: 'Rejection',
|
|
4
|
+
};
|
|
5
|
+
|
|
6
|
+
const messageMap = {
|
|
7
|
+
approve: 'approved',
|
|
8
|
+
reject: 'rejected',
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const signatoryApproveOrganizationEmail = (
|
|
12
|
+
{
|
|
13
|
+
organization: {
|
|
14
|
+
profile: { name, signatoryGivenName, signatoryFamilyName },
|
|
15
|
+
},
|
|
16
|
+
response,
|
|
17
|
+
},
|
|
18
|
+
{ config }
|
|
19
|
+
) => ({
|
|
20
|
+
subject: `${titleMap[response]} of registration by ${name}`,
|
|
21
|
+
// eslint-disable-next-line max-len
|
|
22
|
+
message: `${signatoryGivenName} ${signatoryFamilyName} ${messageMap[response]} the approval request of the registration of ${name} to the Velocity Network.`,
|
|
23
|
+
sender: config.noReplyEmail,
|
|
24
|
+
recipients: [config.registrarSupportEmail],
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
module.exports = {
|
|
28
|
+
signatoryApproveOrganizationEmail,
|
|
29
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2025 Velocity Team
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
module.exports = { ...require('./signatory-status-factory') };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2025 Velocity Team
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
const { register } = require('@spencejs/spence-factories');
|
|
19
|
+
|
|
20
|
+
const { ObjectId } = require('mongodb');
|
|
21
|
+
const initOrganizationFactory = require('../../organizations/factories/organizations-factory');
|
|
22
|
+
const { SignatoryEventStatus } = require('../../index');
|
|
23
|
+
const signatoryStatusPlugin = require('../repos/repo');
|
|
24
|
+
|
|
25
|
+
module.exports = (app) =>
|
|
26
|
+
register(
|
|
27
|
+
'signatoryStatus',
|
|
28
|
+
signatoryStatusPlugin(app)({ config: app.config }),
|
|
29
|
+
async (overrides, { getOrBuild }) => {
|
|
30
|
+
const organization = await getOrBuild(
|
|
31
|
+
'organization',
|
|
32
|
+
initOrganizationFactory(app)
|
|
33
|
+
);
|
|
34
|
+
|
|
35
|
+
return {
|
|
36
|
+
organizationDid: organization.didDoc.id,
|
|
37
|
+
organizationId: new ObjectId(organization._id),
|
|
38
|
+
events: [
|
|
39
|
+
{
|
|
40
|
+
state: SignatoryEventStatus.LINK_SENT,
|
|
41
|
+
timestamp: new Date(),
|
|
42
|
+
},
|
|
43
|
+
],
|
|
44
|
+
authCodes: [
|
|
45
|
+
{
|
|
46
|
+
code: '12345',
|
|
47
|
+
timestamp: new Date(),
|
|
48
|
+
},
|
|
49
|
+
],
|
|
50
|
+
...overrides(),
|
|
51
|
+
};
|
|
52
|
+
}
|
|
53
|
+
);
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const { SignatoryEventStatus } = require('../domain');
|
|
2
|
+
const { ConsentTypes } = require('../../registrar-consents');
|
|
3
|
+
|
|
4
|
+
const approveReminder = async (organization, req) => {
|
|
5
|
+
const { repos, config } = req;
|
|
6
|
+
const currentTime = new Date();
|
|
7
|
+
await repos.signatoryStatus.addState(
|
|
8
|
+
{ organizationId: organization._id },
|
|
9
|
+
SignatoryEventStatus.APPROVED,
|
|
10
|
+
{
|
|
11
|
+
approvedAt: currentTime,
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
await repos.registrarConsents.registerConsent({
|
|
15
|
+
userId: organization.profile.signatoryEmail,
|
|
16
|
+
organizationId: organization._id,
|
|
17
|
+
type: ConsentTypes.Signatory,
|
|
18
|
+
version: config.signatoryConsentVersion,
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
module.exports = {
|
|
23
|
+
approveReminder,
|
|
24
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const { SignatoryEventStatus } = require('../domain');
|
|
2
|
+
|
|
3
|
+
const rejectReminder = async (organization, req) => {
|
|
4
|
+
const { repos } = req;
|
|
5
|
+
const currentTime = new Date();
|
|
6
|
+
await repos.signatoryStatus.addState(
|
|
7
|
+
{ organizationId: organization._id },
|
|
8
|
+
SignatoryEventStatus.REJECTED,
|
|
9
|
+
{
|
|
10
|
+
rejectedAt: currentTime,
|
|
11
|
+
}
|
|
12
|
+
);
|
|
13
|
+
};
|
|
14
|
+
|
|
15
|
+
module.exports = {
|
|
16
|
+
rejectReminder,
|
|
17
|
+
};
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
const { isEmpty, size } = require('lodash/fp');
|
|
2
|
+
const { nanoid } = require('nanoid');
|
|
3
|
+
const { subMinutes } = require('date-fns/fp');
|
|
4
|
+
const { SignatoryEventStatus } = require('../domain');
|
|
5
|
+
|
|
6
|
+
const task = 'send-reminders';
|
|
7
|
+
const sendReminders = async (
|
|
8
|
+
sendEmailToSignatoryForOrganizationApproval,
|
|
9
|
+
req
|
|
10
|
+
) => {
|
|
11
|
+
const currentTime = new Date();
|
|
12
|
+
const { repos, config, log } = req;
|
|
13
|
+
const { signatoryLinkResend } = config;
|
|
14
|
+
const signatoryStatuses = await repos.signatoryStatus.findByEvent(
|
|
15
|
+
subMinutes(signatoryLinkResend, currentTime)
|
|
16
|
+
);
|
|
17
|
+
if (isEmpty(signatoryStatuses)) {
|
|
18
|
+
log.info({ task, message: 'No signatory reminders to send' });
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
for await (const signatoryStatusDoc of signatoryStatuses) {
|
|
23
|
+
await sendReminder(
|
|
24
|
+
signatoryStatusDoc,
|
|
25
|
+
sendEmailToSignatoryForOrganizationApproval,
|
|
26
|
+
req
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
const sendReminder = async (
|
|
32
|
+
signatoryStatusDoc,
|
|
33
|
+
sendEmailToSignatoryForOrganizationApproval,
|
|
34
|
+
context
|
|
35
|
+
) => {
|
|
36
|
+
const { repos, config, log } = context;
|
|
37
|
+
try {
|
|
38
|
+
const filter = { _id: signatoryStatusDoc.organizationId };
|
|
39
|
+
const organization = await repos.organizations.findOne({ filter });
|
|
40
|
+
|
|
41
|
+
if (isEmpty(organization)) {
|
|
42
|
+
log.error({ message: 'Organization not found', filter });
|
|
43
|
+
await repos.signatoryStatus.addState(
|
|
44
|
+
signatoryStatusDoc._id,
|
|
45
|
+
SignatoryEventStatus.REMINDER_ERROR,
|
|
46
|
+
{
|
|
47
|
+
error: 'Organization not found',
|
|
48
|
+
}
|
|
49
|
+
);
|
|
50
|
+
return;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
if (size(signatoryStatusDoc.events) >= config.signatoryMaxReminderCount) {
|
|
54
|
+
await repos.signatoryStatus.addState(
|
|
55
|
+
signatoryStatusDoc._id,
|
|
56
|
+
SignatoryEventStatus.MAX_REACHED
|
|
57
|
+
);
|
|
58
|
+
await context.sendSupportEmail(
|
|
59
|
+
await context.renderTemplate(
|
|
60
|
+
'support-signatory-max-reminders-reached-email-subject',
|
|
61
|
+
{ organization }
|
|
62
|
+
),
|
|
63
|
+
await context.renderTemplate(
|
|
64
|
+
'support-signatory-max-reminders-reached-email-body',
|
|
65
|
+
{
|
|
66
|
+
organization,
|
|
67
|
+
}
|
|
68
|
+
)
|
|
69
|
+
);
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
const authCode = nanoid();
|
|
74
|
+
await sendEmailToSignatoryForOrganizationApproval(
|
|
75
|
+
{
|
|
76
|
+
organization,
|
|
77
|
+
authCode,
|
|
78
|
+
isReminder: true,
|
|
79
|
+
},
|
|
80
|
+
context
|
|
81
|
+
);
|
|
82
|
+
await repos.signatoryStatus.addStateAndCode(
|
|
83
|
+
signatoryStatusDoc._id,
|
|
84
|
+
SignatoryEventStatus.LINK_SENT,
|
|
85
|
+
authCode
|
|
86
|
+
);
|
|
87
|
+
} catch (error) {
|
|
88
|
+
log.error({ err: error });
|
|
89
|
+
await repos.signatoryStatus.addState(
|
|
90
|
+
signatoryStatusDoc._id,
|
|
91
|
+
SignatoryEventStatus.REMINDER_ERROR,
|
|
92
|
+
{
|
|
93
|
+
error: error.message,
|
|
94
|
+
}
|
|
95
|
+
);
|
|
96
|
+
}
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
module.exports = {
|
|
100
|
+
sendReminders,
|
|
101
|
+
sendReminder,
|
|
102
|
+
};
|