Skip to content

Commit

Permalink
Deploying to gh-pages from @ d385a93 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
GordonNicholasCap committed Aug 26, 2024
1 parent 14ed737 commit 569f3b1
Show file tree
Hide file tree
Showing 134 changed files with 4,572 additions and 4,288 deletions.
105 changes: 105 additions & 0 deletions controllers/ImportUserController.html
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,16 @@ <h6><b>Methods</b></h6>
<span class="modifier">Async</span>
<a href="#cancelMigration" >cancelMigration</a>
</li>
<li>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier">Async</span>
<a href="#clearAllAutoMatches" >clearAllAutoMatches</a>
</li>
<li>
<span class="modifier"></span>
<span class="modifier">Async</span>
Expand Down Expand Up @@ -261,6 +271,88 @@ <h3 id="methods">
</tr>


<tr>
<td class="col-md-4">

<div class="io-description">
<b>Parameters :</b>

<table class="params">
<thead>
<tr>
<td>Name</td>
<td>Type</td>
<td>Optional</td>
</tr>
</thead>
<tbody>
<tr>
<td>currentUser</td>
<td>
<code><a href="../interfaces/ICurrentUser.html" target="_self" >ICurrentUser</a></code>
</td>

<td>
No
</td>


</tr>
</tbody>
</table>
</div>
<div class="io-description">
<b>Returns : </b> <code>Promise&lt;void&gt;</code>

</div>
<div class="io-description">

</div>
</td>
</tr>
</tbody>
</table>
<table class="table table-sm table-bordered">
<tbody>
<tr>
<td class="col-md-4">
<a name="clearAllAutoMatches"></a>
<span class="name">
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier"></span>
<span class="modifier">Async</span>
<span ><b>clearAllAutoMatches</b></span>
<a href="#clearAllAutoMatches"><span class="icon ion-ios-link"></span></a>
</span>
</td>
</tr>
<tr>
<td class="col-md-4">
<span class="modifier-icon icon ion-ios-reset"></span>
<code>clearAllAutoMatches(currentUser: <a href="../interfaces/ICurrentUser.html" target="_self">ICurrentUser</a>)</code>
</td>
</tr>

<tr>
<td class="col-md-4">
<b>Decorators : </b>
<br />
<code>@Patch(&#x27;clear-all-auto-matches&#x27;)<br />@ApiOperation({summary: &#x27;Clear all auto matches&#x27;, description: &#x27;Clear all auto matches from imported users of a school&#x27;})<br />@ApiNoContentResponse()<br />@ApiUnauthorizedResponse()<br />@ApiForbiddenResponse()<br />@HttpCode(HttpStatus.NO_CONTENT)<br /></code>
</td>
</tr>

<tr>
<td class="col-md-4">
<div class="io-line">Defined in <a href="" data-line="163"
class="link-to-prism">apps/server/src/modules/user-import/controller/import-user.controller.ts:163</a></div>
</td>
</tr>


<tr>
<td class="col-md-4">

Expand Down Expand Up @@ -1291,6 +1383,19 @@ <h3 id="methods">
async cancelMigration(@CurrentUser() currentUser: ICurrentUser): Promise&lt;void&gt; {
await this.userImportUc.cancelMigration(currentUser.userId);
}

@Patch(&#x27;clear-all-auto-matches&#x27;)
@ApiOperation({
summary: &#x27;Clear all auto matches&#x27;,
description: &#x27;Clear all auto matches from imported users of a school&#x27;,
})
@ApiNoContentResponse()
@ApiUnauthorizedResponse()
@ApiForbiddenResponse()
@HttpCode(HttpStatus.NO_CONTENT)
async clearAllAutoMatches(@CurrentUser() currentUser: ICurrentUser): Promise&lt;void&gt; {
await this.userImportUc.clearAllAutoMatches(currentUser.userId);
}
}
</code></pre>
</div>
Expand Down
8 changes: 4 additions & 4 deletions coverage.html
Original file line number Diff line number Diff line change
Expand Up @@ -25507,7 +25507,7 @@
<td>ImportUserController</td>
<td align="right" data-sort="0">
<span class="coverage-percent">0 %</span>
<span class="coverage-count">(0/11)</span>
<span class="coverage-count">(0/12)</span>
</td>
</tr>
<tr class="low">
Expand Down Expand Up @@ -25829,9 +25829,9 @@
</td>
<td>injectable</td>
<td>UserImportUc</td>
<td align="right" data-sort="13">
<span class="coverage-percent">13 %</span>
<span class="coverage-count">(3/22)</span>
<td align="right" data-sort="12">
<span class="coverage-percent">12 %</span>
<span class="coverage-count">(3/24)</span>
</td>
</tr>
<tr class="low">
Expand Down
Loading

0 comments on commit 569f3b1

Please sign in to comment.