|
|
@ -1039,7 +1039,7 @@ export default class AccountViewView extends Vue { |
|
|
|
try { |
|
|
|
const headers = await getHeaders(this.activeDid); |
|
|
|
const response = await this.axios.get( |
|
|
|
this.apiServer + |
|
|
|
this.partnerApiServer + |
|
|
|
"/api/partner/userProfileForIssuer/" + |
|
|
|
this.activeDid, |
|
|
|
{ headers }, |
|
|
@ -1857,7 +1857,7 @@ export default class AccountViewView extends Vue { |
|
|
|
); |
|
|
|
} |
|
|
|
const response = await this.axios.post( |
|
|
|
this.apiServer + "/api/partner/userProfile", |
|
|
|
this.partnerApiServer + "/api/partner/userProfile", |
|
|
|
payload, |
|
|
|
{ headers }, |
|
|
|
); |
|
|
@ -1945,7 +1945,7 @@ export default class AccountViewView extends Vue { |
|
|
|
try { |
|
|
|
const headers = await getHeaders(this.activeDid); |
|
|
|
const response = await this.axios.delete( |
|
|
|
this.apiServer + "/api/partner/userProfile", |
|
|
|
this.partnerApiServer + "/api/partner/userProfile", |
|
|
|
{ headers }, |
|
|
|
); |
|
|
|
if (response.status === 204) { |
|
|
|