Skip to content

Commit 6c62cd6

Browse files
committed
deploy: 64f9443
1 parent fe19e27 commit 6c62cd6

File tree

18 files changed

+211
-214
lines changed

18 files changed

+211
-214
lines changed

injectables/PasswdService.html

Lines changed: 19 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -420,8 +420,8 @@ <h3 id="methods">
420420

421421
<tr>
422422
<td class="col-md-4">
423-
<div class="io-line">Defined in <a href="" data-line="276"
424-
class="link-to-prism">src/management/passwd/passwd.service.ts:276</a></div>
423+
<div class="io-line">Defined in <a href="" data-line="275"
424+
class="link-to-prism">src/management/passwd/passwd.service.ts:275</a></div>
425425
</td>
426426
</tr>
427427

@@ -583,8 +583,8 @@ <h3 id="methods">
583583

584584
<tr>
585585
<td class="col-md-4">
586-
<div class="io-line">Defined in <a href="" data-line="485"
587-
class="link-to-prism">src/management/passwd/passwd.service.ts:485</a></div>
586+
<div class="io-line">Defined in <a href="" data-line="484"
587+
class="link-to-prism">src/management/passwd/passwd.service.ts:484</a></div>
588588
</td>
589589
</tr>
590590

@@ -623,8 +623,8 @@ <h3 id="methods">
623623

624624
<tr>
625625
<td class="col-md-4">
626-
<div class="io-line">Defined in <a href="" data-line="337"
627-
class="link-to-prism">src/management/passwd/passwd.service.ts:337</a></div>
626+
<div class="io-line">Defined in <a href="" data-line="336"
627+
class="link-to-prism">src/management/passwd/passwd.service.ts:336</a></div>
628628
</td>
629629
</tr>
630630

@@ -693,8 +693,8 @@ <h3 id="methods">
693693

694694
<tr>
695695
<td class="col-md-4">
696-
<div class="io-line">Defined in <a href="" data-line="314"
697-
class="link-to-prism">src/management/passwd/passwd.service.ts:314</a></div>
696+
<div class="io-line">Defined in <a href="" data-line="313"
697+
class="link-to-prism">src/management/passwd/passwd.service.ts:313</a></div>
698698
</td>
699699
</tr>
700700

@@ -775,8 +775,8 @@ <h3 id="methods">
775775

776776
<tr>
777777
<td class="col-md-4">
778-
<div class="io-line">Defined in <a href="" data-line="459"
779-
class="link-to-prism">src/management/passwd/passwd.service.ts:459</a></div>
778+
<div class="io-line">Defined in <a href="" data-line="458"
779+
class="link-to-prism">src/management/passwd/passwd.service.ts:458</a></div>
780780
</td>
781781
</tr>
782782

@@ -885,8 +885,8 @@ <h3 id="methods">
885885

886886
<tr>
887887
<td class="col-md-4">
888-
<div class="io-line">Defined in <a href="" data-line="444"
889-
class="link-to-prism">src/management/passwd/passwd.service.ts:444</a></div>
888+
<div class="io-line">Defined in <a href="" data-line="443"
889+
class="link-to-prism">src/management/passwd/passwd.service.ts:443</a></div>
890890
</td>
891891
</tr>
892892

@@ -1025,8 +1025,8 @@ <h3 id="methods">
10251025

10261026
<tr>
10271027
<td class="col-md-4">
1028-
<div class="io-line">Defined in <a href="" data-line="406"
1029-
class="link-to-prism">src/management/passwd/passwd.service.ts:406</a></div>
1028+
<div class="io-line">Defined in <a href="" data-line="405"
1029+
class="link-to-prism">src/management/passwd/passwd.service.ts:405</a></div>
10301030
</td>
10311031
</tr>
10321032

@@ -1095,8 +1095,8 @@ <h3 id="methods">
10951095

10961096
<tr>
10971097
<td class="col-md-4">
1098-
<div class="io-line">Defined in <a href="" data-line="359"
1099-
class="link-to-prism">src/management/passwd/passwd.service.ts:359</a></div>
1098+
<div class="io-line">Defined in <a href="" data-line="358"
1099+
class="link-to-prism">src/management/passwd/passwd.service.ts:358</a></div>
11001100
</td>
11011101
</tr>
11021102

@@ -1165,8 +1165,8 @@ <h3 id="methods">
11651165

11661166
<tr>
11671167
<td class="col-md-4">
1168-
<div class="io-line">Defined in <a href="" data-line="470"
1169-
class="link-to-prism">src/management/passwd/passwd.service.ts:470</a></div>
1168+
<div class="io-line">Defined in <a href="" data-line="469"
1169+
class="link-to-prism">src/management/passwd/passwd.service.ts:469</a></div>
11701170
</td>
11711171
</tr>
11721172

@@ -1715,8 +1715,7 @@ <h3 id="inputs">
17151715
},
17161716
);
17171717
// on met actif l&#x27;identité
1718-
identity.dataStatus &#x3D; DataStatusEnum.ACTIVE;
1719-
await identity.save()
1718+
await this.identities.model.updateOne({ _id:identity._id},{dataStatus: DataStatusEnum.ACTIVE})
17201719
return result;
17211720
} catch (e) {
17221721
let job &#x3D; undefined;

interfaces/CipherData.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,8 +481,7 @@ <h3 id="inputs">Properties</h3>
481481
},
482482
);
483483
// on met actif l&#x27;identité
484-
identity.dataStatus &#x3D; DataStatusEnum.ACTIVE;
485-
await identity.save()
484+
await this.identities.model.updateOne({ _id:identity._id},{dataStatus: DataStatusEnum.ACTIVE})
486485
return result;
487486
} catch (e) {
488487
let job &#x3D; undefined;

interfaces/TokenData.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,8 +520,7 @@ <h3 id="inputs">Properties</h3>
520520
},
521521
);
522522
// on met actif l&#x27;identité
523-
identity.dataStatus &#x3D; DataStatusEnum.ACTIVE;
524-
await identity.save()
523+
await this.identities.model.updateOne({ _id:identity._id},{dataStatus: DataStatusEnum.ACTIVE})
525524
return result;
526525
} catch (e) {
527526
let job &#x3D; undefined;

js/search/search_index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/IdentitiesJsonformsModule.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@
117117
<title>cluster_IdentitiesJsonformsModule</title>
118118
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="116,-70 116,-268 380,-268 380,-70 116,-70"/>
119119
</g>
120-
<g id="clust4" class="cluster">
121-
<title>cluster_IdentitiesJsonformsModule_exports</title>
122-
<polygon fill="none" stroke="black" points="154,-208 154,-260 342,-260 342,-208 154,-208"/>
123-
</g>
124120
<g id="clust6" class="cluster">
125121
<title>cluster_IdentitiesJsonformsModule_providers</title>
126122
<polygon fill="none" stroke="black" points="124,-78 124,-130 372,-130 372,-78 124,-78"/>
127123
</g>
124+
<g id="clust4" class="cluster">
125+
<title>cluster_IdentitiesJsonformsModule_exports</title>
126+
<polygon fill="none" stroke="black" points="154,-208 154,-260 342,-260 342,-208 154,-208"/>
127+
</g>
128128
<!-- IdentitiesJsonformsService -->
129129
<g id="node1" class="node">
130130
<title>IdentitiesJsonformsService </title>

modules/IdentitiesJsonformsModule/dependencies.svg

Lines changed: 4 additions & 4 deletions
Loading

modules/IdentitiesModule.html

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -117,107 +117,107 @@
117117
<title>cluster_IdentitiesModule</title>
118118
<polygon fill="none" stroke="black" stroke-dasharray="1,5" points="8,-70 8,-268 1194,-268 1194,-70 8,-70"/>
119119
</g>
120-
<g id="clust6" class="cluster">
121-
<title>cluster_IdentitiesModule_providers</title>
122-
<polygon fill="none" stroke="black" points="401,-78 401,-130 1186,-130 1186,-78 401,-78"/>
123-
</g>
124120
<g id="clust4" class="cluster">
125121
<title>cluster_IdentitiesModule_exports</title>
126-
<polygon fill="none" stroke="black" points="351,-208 351,-260 509,-260 509,-208 351,-208"/>
122+
<polygon fill="none" stroke="black" points="685,-208 685,-260 843,-260 843,-208 685,-208"/>
127123
</g>
128124
<g id="clust3" class="cluster">
129125
<title>cluster_IdentitiesModule_imports</title>
130-
<polygon fill="none" stroke="black" points="16,-78 16,-130 393,-130 393,-78 16,-78"/>
126+
<polygon fill="none" stroke="black" points="809,-78 809,-130 1186,-130 1186,-78 809,-78"/>
127+
</g>
128+
<g id="clust6" class="cluster">
129+
<title>cluster_IdentitiesModule_providers</title>
130+
<polygon fill="none" stroke="black" points="16,-78 16,-130 801,-130 801,-78 16,-78"/>
131131
</g>
132132
<!-- AgentsModule -->
133133
<g id="node1" class="node">
134134
<title>AgentsModule</title>
135-
<polygon fill="#8dd3c7" stroke="black" points="384.71,-122 381.71,-126 360.71,-126 357.71,-122 285.29,-122 285.29,-86 384.71,-86 384.71,-122"/>
136-
<text text-anchor="middle" x="335" y="-99.8" font-family="Times,serif" font-size="14.00">AgentsModule</text>
135+
<polygon fill="#8dd3c7" stroke="black" points="1177.71,-122 1174.71,-126 1153.71,-126 1150.71,-122 1078.29,-122 1078.29,-86 1177.71,-86 1177.71,-122"/>
136+
<text text-anchor="middle" x="1128" y="-99.8" font-family="Times,serif" font-size="14.00">AgentsModule</text>
137137
</g>
138138
<!-- IdentitiesModule -->
139139
<g id="node4" class="node">
140140
<title>IdentitiesModule</title>
141-
<polygon fill="#8dd3c7" stroke="black" points="485.65,-187 482.65,-191 461.65,-191 458.65,-187 374.35,-187 374.35,-151 485.65,-151 485.65,-187"/>
142-
<text text-anchor="middle" x="430" y="-164.8" font-family="Times,serif" font-size="14.00">IdentitiesModule</text>
141+
<polygon fill="#8dd3c7" stroke="black" points="819.65,-187 816.65,-191 795.65,-191 792.65,-187 708.35,-187 708.35,-151 819.65,-151 819.65,-187"/>
142+
<text text-anchor="middle" x="764" y="-164.8" font-family="Times,serif" font-size="14.00">IdentitiesModule</text>
143143
</g>
144144
<!-- AgentsModule&#45;&gt;IdentitiesModule -->
145145
<g id="edge1" class="edge">
146146
<title>AgentsModule&#45;&gt;IdentitiesModule</title>
147-
<path fill="none" stroke="black" d="M379.39,-122.11C379.39,-122.11 379.39,-140.99 379.39,-140.99"/>
148-
<polygon fill="black" stroke="black" points="375.89,-140.99 379.39,-150.99 382.89,-140.99 375.89,-140.99"/>
147+
<path fill="none" stroke="black" d="M1128,-122.29C1128,-144.21 1128,-178 1128,-178 1128,-178 829.68,-178 829.68,-178"/>
148+
<polygon fill="black" stroke="black" points="829.68,-174.5 819.68,-178 829.68,-181.5 829.68,-174.5"/>
149149
</g>
150150
<!-- FilestorageModule -->
151151
<g id="node2" class="node">
152152
<title>FilestorageModule</title>
153-
<polygon fill="#8dd3c7" stroke="black" points="267.75,-122 264.75,-126 243.75,-126 240.75,-122 146.25,-122 146.25,-86 267.75,-86 267.75,-122"/>
154-
<text text-anchor="middle" x="207" y="-99.8" font-family="Times,serif" font-size="14.00">FilestorageModule</text>
153+
<polygon fill="#8dd3c7" stroke="black" points="1060.75,-122 1057.75,-126 1036.75,-126 1033.75,-122 939.25,-122 939.25,-86 1060.75,-86 1060.75,-122"/>
154+
<text text-anchor="middle" x="1000" y="-99.8" font-family="Times,serif" font-size="14.00">FilestorageModule</text>
155155
</g>
156156
<!-- FilestorageModule&#45;&gt;IdentitiesModule -->
157157
<g id="edge2" class="edge">
158158
<title>FilestorageModule&#45;&gt;IdentitiesModule</title>
159-
<path fill="none" stroke="black" d="M207,-122.02C207,-139.37 207,-163 207,-163 207,-163 364.3,-163 364.3,-163"/>
160-
<polygon fill="black" stroke="black" points="364.3,-166.5 374.3,-163 364.3,-159.5 364.3,-166.5"/>
159+
<path fill="none" stroke="black" d="M1000,-122.11C1000,-141.34 1000,-169 1000,-169 1000,-169 829.93,-169 829.93,-169"/>
160+
<polygon fill="black" stroke="black" points="829.93,-165.5 819.93,-169 829.93,-172.5 829.93,-165.5"/>
161161
</g>
162162
<!-- SettingsModule -->
163163
<g id="node3" class="node">
164164
<title>SettingsModule</title>
165-
<polygon fill="#8dd3c7" stroke="black" points="128.16,-122 125.16,-126 104.16,-126 101.16,-122 23.84,-122 23.84,-86 128.16,-86 128.16,-122"/>
166-
<text text-anchor="middle" x="76" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsModule</text>
165+
<polygon fill="#8dd3c7" stroke="black" points="921.16,-122 918.16,-126 897.16,-126 894.16,-122 816.84,-122 816.84,-86 921.16,-86 921.16,-122"/>
166+
<text text-anchor="middle" x="869" y="-99.8" font-family="Times,serif" font-size="14.00">SettingsModule</text>
167167
</g>
168168
<!-- SettingsModule&#45;&gt;IdentitiesModule -->
169169
<g id="edge3" class="edge">
170170
<title>SettingsModule&#45;&gt;IdentitiesModule</title>
171-
<path fill="none" stroke="black" d="M76,-122.28C76,-143.32 76,-175 76,-175 76,-175 364.3,-175 364.3,-175"/>
172-
<polygon fill="black" stroke="black" points="364.3,-178.5 374.3,-175 364.3,-171.5 364.3,-178.5"/>
171+
<path fill="none" stroke="black" d="M827.3,-122.03C827.3,-138.4 827.3,-160 827.3,-160 827.3,-160 826.58,-160 826.58,-160"/>
172+
<polygon fill="black" stroke="black" points="830.04,-156.5 820.04,-160 830.04,-163.5 830.04,-156.5"/>
173173
</g>
174174
<!-- IdentitiesCrudService -->
175175
<g id="node5" class="node">
176176
<title>IdentitiesCrudService </title>
177-
<polygon fill="#fb8072" stroke="black" points="500.57,-252 359.43,-252 359.43,-216 500.57,-216 500.57,-252"/>
178-
<text text-anchor="middle" x="430" y="-229.8" font-family="Times,serif" font-size="14.00">IdentitiesCrudService </text>
177+
<polygon fill="#fb8072" stroke="black" points="834.57,-252 693.43,-252 693.43,-216 834.57,-216 834.57,-252"/>
178+
<text text-anchor="middle" x="764" y="-229.8" font-family="Times,serif" font-size="14.00">IdentitiesCrudService </text>
179179
</g>
180180
<!-- IdentitiesModule&#45;&gt;IdentitiesCrudService -->
181181
<g id="edge4" class="edge">
182182
<title>IdentitiesModule&#45;&gt;IdentitiesCrudService </title>
183-
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M430,-187.11C430,-187.11 430,-205.99 430,-205.99"/>
184-
<polygon fill="black" stroke="black" points="426.5,-205.99 430,-215.99 433.5,-205.99 426.5,-205.99"/>
183+
<path fill="none" stroke="black" stroke-dasharray="5,2" d="M764,-187.11C764,-187.11 764,-205.99 764,-205.99"/>
184+
<polygon fill="black" stroke="black" points="760.5,-205.99 764,-215.99 767.5,-205.99 760.5,-205.99"/>
185185
</g>
186186
<!-- IdentitiesForcepasswordService -->
187187
<g id="node6" class="node">
188188
<title>IdentitiesForcepasswordService</title>
189-
<ellipse fill="#fdb462" stroke="black" cx="1044" cy="-104" rx="134.26" ry="18"/>
190-
<text text-anchor="middle" x="1044" y="-99.8" font-family="Times,serif" font-size="14.00">IdentitiesForcepasswordService</text>
189+
<ellipse fill="#fdb462" stroke="black" cx="659" cy="-104" rx="134.26" ry="18"/>
190+
<text text-anchor="middle" x="659" y="-99.8" font-family="Times,serif" font-size="14.00">IdentitiesForcepasswordService</text>
191191
</g>
192192
<!-- IdentitiesForcepasswordService&#45;&gt;IdentitiesModule -->
193193
<g id="edge5" class="edge">
194194
<title>IdentitiesForcepasswordService&#45;&gt;IdentitiesModule</title>
195-
<path fill="none" stroke="black" d="M1044,-122.28C1044,-143.32 1044,-175 1044,-175 1044,-175 495.84,-175 495.84,-175"/>
196-
<polygon fill="black" stroke="black" points="495.84,-171.5 485.84,-175 495.84,-178.5 495.84,-171.5"/>
195+
<path fill="none" stroke="black" d="M750.78,-117.15C750.78,-117.15 750.78,-140.69 750.78,-140.69"/>
196+
<polygon fill="black" stroke="black" points="747.28,-140.69 750.78,-150.69 754.28,-140.69 747.28,-140.69"/>
197197
</g>
198198
<!-- IdentitiesJsonformsService -->
199199
<g id="node7" class="node">
200200
<title>IdentitiesJsonformsService</title>
201-
<ellipse fill="#fdb462" stroke="black" cx="776" cy="-104" rx="115.74" ry="18"/>
202-
<text text-anchor="middle" x="776" y="-99.8" font-family="Times,serif" font-size="14.00">IdentitiesJsonformsService</text>
201+
<ellipse fill="#fdb462" stroke="black" cx="391" cy="-104" rx="115.74" ry="18"/>
202+
<text text-anchor="middle" x="391" y="-99.8" font-family="Times,serif" font-size="14.00">IdentitiesJsonformsService</text>
203203
</g>
204204
<!-- IdentitiesJsonformsService&#45;&gt;IdentitiesModule -->
205205
<g id="edge6" class="edge">
206206
<title>IdentitiesJsonformsService&#45;&gt;IdentitiesModule</title>
207-
<path fill="none" stroke="black" d="M776,-122.02C776,-139.37 776,-163 776,-163 776,-163 495.98,-163 495.98,-163"/>
208-
<polygon fill="black" stroke="black" points="495.98,-159.5 485.98,-163 495.98,-166.5 495.98,-159.5"/>
207+
<path fill="none" stroke="black" d="M391,-122.02C391,-139.37 391,-163 391,-163 391,-163 698.16,-163 698.16,-163"/>
208+
<polygon fill="black" stroke="black" points="698.16,-166.5 708.16,-163 698.16,-159.5 698.16,-166.5"/>
209209
</g>
210210
<!-- IdentitiesValidationService -->
211211
<g id="node8" class="node">
212212
<title>IdentitiesValidationService</title>
213-
<ellipse fill="#fdb462" stroke="black" cx="526" cy="-104" rx="116.88" ry="18"/>
214-
<text text-anchor="middle" x="526" y="-99.8" font-family="Times,serif" font-size="14.00">IdentitiesValidationService</text>
213+
<ellipse fill="#fdb462" stroke="black" cx="141" cy="-104" rx="116.88" ry="18"/>
214+
<text text-anchor="middle" x="141" y="-99.8" font-family="Times,serif" font-size="14.00">IdentitiesValidationService</text>
215215
</g>
216216
<!-- IdentitiesValidationService&#45;&gt;IdentitiesModule -->
217217
<g id="edge7" class="edge">
218218
<title>IdentitiesValidationService&#45;&gt;IdentitiesModule</title>
219-
<path fill="none" stroke="black" d="M447.57,-117.47C447.57,-117.47 447.57,-140.86 447.57,-140.86"/>
220-
<polygon fill="black" stroke="black" points="444.07,-140.86 447.57,-150.86 451.07,-140.86 444.07,-140.86"/>
219+
<path fill="none" stroke="black" d="M141,-122.28C141,-143.32 141,-175 141,-175 141,-175 698.16,-175 698.16,-175"/>
220+
<polygon fill="black" stroke="black" points="698.16,-178.5 708.16,-175 698.16,-171.5 698.16,-178.5"/>
221221
</g>
222222
</g>
223223
</svg>

0 commit comments

Comments
 (0)