File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 25
25
},
26
26
"exports" : {
27
27
"./plugin" : " ./src/plugin.js" ,
28
- "./proxy/actions" : " ./src/proxy/actions/index.js"
28
+ "./proxy/actions" : " ./src/proxy/actions/index.js" ,
29
+ "./src/config/env" : " ./src/config/env.js"
29
30
},
30
31
"workspaces" : [
31
32
" ./packages/git-proxy-cli"
Original file line number Diff line number Diff line change 95
95
"privateOrganizations" : [],
96
96
"urlShortener" : " " ,
97
97
"contactEmail" : " " ,
98
- "csrfProtection" : true
98
+ "csrfProtection" : true ,
99
+ "plugins" : []
99
100
}
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ const proc = require('./processors');
2
2
3
3
const pushActionChain = [
4
4
proc . push . parsePush ,
5
- proc . push . checkIfOnboardedRepo ,
5
+ proc . push . checkRepoInAuthorisedList ,
6
6
proc . push . checkCommitMessages ,
7
7
proc . push . checkAuthorEmails ,
8
- // proc.push.checkIfPullRequestApproved ,
8
+ proc . push . checkUserPushPermission ,
9
9
proc . push . checkIfWaitingAuth ,
10
10
proc . push . pullRemote ,
11
11
proc . push . writePack ,
@@ -16,7 +16,7 @@ const pushActionChain = [
16
16
] ;
17
17
18
18
const pullActionChain = [
19
- proc . push . checkIfOnboardedRepo ,
19
+ proc . push . checkRepoInAuthorisedList ,
20
20
] ;
21
21
22
22
let pluginsLoaded = false ;
You can’t perform that action at this time.
0 commit comments