This commit is contained in:
Andras Bacsai
2021-06-07 21:33:11 +02:00
committed by GitHub
parent 9c173d1de0
commit 31b3f58b2c
36 changed files with 1480 additions and 1999 deletions

View File

@@ -48,7 +48,9 @@ export const application = writable<Application>({
general: {
deployId: null,
nickname: null,
workdir: null
workdir: null,
isPreviewDeploymentEnabled: false,
pullRequest: 0
},
build: {
pack: 'static',
@@ -76,6 +78,7 @@ export const application = writable<Application>({
secrets: []
}
});
export const prApplication = writable([])
export const initConf = writable({});
@@ -97,7 +100,9 @@ export const initialApplication: Application = {
general: {
deployId: null,
nickname: null,
workdir: null
workdir: null,
isPreviewDeploymentEnabled: false,
pullRequest: 0
},
build: {
pack: 'static',
@@ -162,3 +167,5 @@ export const initialNewService = {
userPasswordAgain: null,
baseURL: null
};
export const isPullRequestPermissionsGranted = writable(false)