forked from G-Research-Forks/git-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
37 lines (36 loc) · 1.26 KB
/
index.ts
File metadata and controls
37 lines (36 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import { exec as parsePush } from './parsePush';
import { exec as preReceive } from './preReceive';
import { exec as checkRepoInAuthorisedList } from './checkRepoInAuthorisedList';
import { exec as audit } from './audit';
import { exec as pullRemote } from './pullRemote';
import { exec as writePack } from './writePack';
import { exec as getDiff } from './getDiff';
import { exec as checkHiddenCommits } from './checkHiddenCommits';
import { exec as gitleaks } from './gitleaks';
import { exec as scanDiff } from './scanDiff';
import { exec as blockForAuth } from './blockForAuth';
import { exec as checkIfWaitingAuth } from './checkIfWaitingAuth';
import { exec as checkCommitMessages } from './checkCommitMessages';
import { exec as checkAuthorEmails } from './checkAuthorEmails';
import { exec as checkUserPushPermission } from './checkUserPushPermission';
import { exec as clearBareClone } from './clearBareClone';
import { exec as checkEmptyBranch } from './checkEmptyBranch';
export {
parsePush,
preReceive,
checkRepoInAuthorisedList,
audit,
pullRemote,
writePack,
getDiff,
checkHiddenCommits,
gitleaks,
scanDiff,
blockForAuth,
checkIfWaitingAuth,
checkCommitMessages,
checkAuthorEmails,
checkUserPushPermission,
clearBareClone,
checkEmptyBranch,
};