refactor: migrate to handleId (since fullIri will soon be deprecated)

This commit is contained in:
2023-02-28 09:12:00 -07:00
parent 2d78a46ef2
commit 8b0b65c55b
2 changed files with 11 additions and 3 deletions

View File

@@ -197,11 +197,17 @@ export default class NewEditProjectView extends Vue {
try {
const resp = await this.axios.post(url, payload, { headers });
console.log("Got resp data:", resp.data);
if (resp.data?.success?.fullIri) {
// handleId is new in server v release-1.6.0; remove fullIri when that
// version shows up here: https://endorser.ch:3000/api-docs/
if (resp.data?.success?.handleId || resp.data?.success?.fullIri) {
this.errorMessage = "";
this.alertTitle = "";
this.alertMessage = "";
useAppStore().setProjectId(resp.data.success.fullIri);
// handleId is new in server v release-1.6.0; remove fullIri when that
// version shows up here: https://endorser.ch:3000/api-docs/
useAppStore().setProjectId(
resp.data.success.handleId || resp.data.success.fullIri
);
setTimeout(
function (that: Vue) {
const route = {

View File

@@ -139,7 +139,9 @@ export default class ProjectsView extends Vue {
const data = {
name: plan.name,
description: plan.description,
handleId: plan.fullIri,
// handleId is new in server v release-1.6.0; remove fullIri when that
// version shows up here: https://endorser.ch:3000/api-docs/
handleId: plan.handleId || plan.fullIri,
};
this.projects.push(data);
}