Ok #865 fixed the published exe

pull/1488/head
Jamie.Rees 7 years ago
parent a325a2ff56
commit 0db4258d5c

@ -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> {

@ -11,6 +11,10 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<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 -->

Loading…
Cancel
Save