projectsettings: add update project repo linked account
This commit is contained in:
parent
449096c0a3
commit
6d0899681c
|
@ -74,6 +74,21 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="panel-block is-block">
|
||||||
|
<div>
|
||||||
|
<h4 class="title is-4">Change remote repository linked account</h4>
|
||||||
|
<div class="message is-danger">
|
||||||
|
<div
|
||||||
|
class="message-body"
|
||||||
|
>This operation will change the linked account associated with the project remote repository to the current user linked account</div>
|
||||||
|
</div>
|
||||||
|
<button class="button is-danger" @click="updateRepoLinkedAccount()">Change</button>
|
||||||
|
|
||||||
|
<div v-if="updateRepoLinkedAccountError" class="message is-danger">
|
||||||
|
<div class="message-body">{{ updateRepoLinkedAccountError }}</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
@ -83,7 +98,8 @@ import {
|
||||||
fetchProject,
|
fetchProject,
|
||||||
fetchVariables,
|
fetchVariables,
|
||||||
updateProject,
|
updateProject,
|
||||||
deleteProject
|
deleteProject,
|
||||||
|
projectUpdateRepoLinkedAccount
|
||||||
} from "@/util/data.js";
|
} from "@/util/data.js";
|
||||||
|
|
||||||
import { projectGroupLink } from "@/util/link.js";
|
import { projectGroupLink } from "@/util/link.js";
|
||||||
|
@ -102,6 +118,7 @@ export default {
|
||||||
return {
|
return {
|
||||||
updateProjectError: null,
|
updateProjectError: null,
|
||||||
deleteProjectError: null,
|
deleteProjectError: null,
|
||||||
|
updateRepoLinkedAccountError: null,
|
||||||
project: null,
|
project: null,
|
||||||
projectIsPrivate: false,
|
projectIsPrivate: false,
|
||||||
variables: [],
|
variables: [],
|
||||||
|
@ -124,6 +141,7 @@ export default {
|
||||||
resetErrors() {
|
resetErrors() {
|
||||||
this.updateProjectError = null;
|
this.updateProjectError = null;
|
||||||
this.deleteProjectError = null;
|
this.deleteProjectError = null;
|
||||||
|
this.updateRepoLinkedAccountError = null;
|
||||||
},
|
},
|
||||||
async updateProject() {
|
async updateProject() {
|
||||||
this.resetErrors();
|
this.resetErrors();
|
||||||
|
@ -171,6 +189,21 @@ export default {
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
async updateRepoLinkedAccount() {
|
||||||
|
this.resetErrors();
|
||||||
|
|
||||||
|
let projectref = [
|
||||||
|
this.ownertype,
|
||||||
|
this.ownername,
|
||||||
|
...this.projectref
|
||||||
|
].join("/");
|
||||||
|
|
||||||
|
let { error } = await projectUpdateRepoLinkedAccount(projectref);
|
||||||
|
if (error) {
|
||||||
|
this.updateRepoLinkedAccountError = error;
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created: async function() {
|
created: async function() {
|
||||||
|
|
|
@ -286,6 +286,14 @@ export async function deleteProject(projectref) {
|
||||||
return await fetch(apiurl(path), init)
|
return await fetch(apiurl(path), init)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export async function projectUpdateRepoLinkedAccount(projectref) {
|
||||||
|
let path = "/projects/" + encodeURIComponent(projectref) + "/updaterepolinkedaccount"
|
||||||
|
let init = {
|
||||||
|
method: "PUT",
|
||||||
|
}
|
||||||
|
return await fetch(apiurl(path), init)
|
||||||
|
}
|
||||||
|
|
||||||
export async function deleteProjectGroup(projectgroupref) {
|
export async function deleteProjectGroup(projectgroupref) {
|
||||||
let path = "/projectgroups/" + encodeURIComponent(projectgroupref)
|
let path = "/projectgroups/" + encodeURIComponent(projectgroupref)
|
||||||
let init = {
|
let init = {
|
||||||
|
|
Loading…
Reference in New Issue