src/export.html [413:430]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
fetch(
`${GITLAB_API_BASE_URL}/projects/` + result.project_id + '?access_token=' + key,
{},
)
.then(function (response) {
if (!response.ok) {
throw Error(response.status);
}
return response;
})
.then((response) => {
return response.json();
})
.then((success2) => {
result.project = {
name_with_namespace: success2.name_with_namespace,
path_with_namespace: success2.path_with_namespace,
};
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
src/export.html [524:541]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
fetch(
`${GITLAB_API_BASE_URL}/projects/` + result.project_id + '?access_token=' + key,
{},
)
.then(function (response) {
if (!response.ok) {
throw Error(response.status);
}
return response;
})
.then((response) => {
return response.json();
})
.then((success2) => {
result.project = {
name_with_namespace: success2.name_with_namespace,
path_with_namespace: success2.path_with_namespace,
};
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -