We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1e7683 commit 4b694f4Copy full SHA for 4b694f4
1 file changed
admin/webapp/websrc/app/common/api/auth-http.service.ts
@@ -31,7 +31,7 @@ interface LicenseResponse {
31
}
32
33
interface PublicPasswordProfileResponse {
34
- pwd_profiles: PublicPasswordProfile;
+ pwd_profile: PublicPasswordProfile;
35
36
37
interface RoleResponse {
@@ -213,7 +213,7 @@ export class AuthHttpService {
213
getPublicPwdProfile(): Observable<PublicPasswordProfile> {
214
return GlobalVariable.http
215
.get<PublicPasswordProfileResponse>(PathConstant.PUBLIC_PASSWORD_PROFILE)
216
- .pipe(map(r => r.pwd_profiles));
+ .pipe(map(r => r.pwd_profile));
217
218
219
patchPwdProfile(profile: PasswordProfile): Observable<unknown> {
0 commit comments