mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 21:33:15 -07:00
Ok #865 fixed the published exe
This commit is contained in:
parent
a325a2ff56
commit
0db4258d5c
2 changed files with 5 additions and 1 deletions
|
@ -13,7 +13,7 @@ export class IdentityService extends ServiceAuthHelpers {
|
|||
super(http, '/api/v1/Identity/');
|
||||
}
|
||||
createWizardUser(username: string, password: string): Observable<boolean> {
|
||||
return this.regularHttp.post(`${this.url}/Wizard/`, JSON.stringify({ username: username, password: password }), { headers: this.headers }).map(this.extractData);
|
||||
return this.regularHttp.post(`${this.url}Wizard/`, JSON.stringify({ username: username, password: password }), { headers: this.headers }).map(this.extractData);
|
||||
}
|
||||
|
||||
getUser(): Observable<IUser> {
|
||||
|
|
|
@ -12,6 +12,10 @@
|
|||
<DocumentationFile>bin\Debug\netcoreapp1.1\Swagger.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||||
<DocumentationFile>bin\Release\netcoreapp1.1\Swagger.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<!-- Files not to show in IDE -->
|
||||
<Content Remove="package-lock.json" />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue