fix: Autodeploy true by default for GH repos

This commit is contained in:
Andras Bacsai 2022-03-11 23:56:11 +01:00
parent 36c7e1a3c3
commit 1bc9e4c2d3

View File

@ -25,10 +25,10 @@
let selected = { let selected = {
projectId: undefined, projectId: undefined,
repository: undefined, repository: undefined,
branch: undefined branch: undefined,
autodeploy: application.settings.autodeploy || true
}; };
let showSave = false; let showSave = false;
let autodeploy = application.settings.autodeploy || true;
async function loadRepositoriesByPage(page = 0) { async function loadRepositoriesByPage(page = 0) {
return await get(`${apiUrl}/installation/repositories?per_page=100&page=${page}`, { return await get(`${apiUrl}/installation/repositories?per_page=100&page=${page}`, {
@ -75,7 +75,7 @@
`This branch is already used by another application. Webhooks won't work in this case for both applications. Are you sure you want to use it?` `This branch is already used by another application. Webhooks won't work in this case for both applications. Are you sure you want to use it?`
); );
if (sure) { if (sure) {
autodeploy = false; selected.autodeploy = false;
showSave = true; showSave = true;
return true; return true;
} }