UNCLASSIFIED

Commits (3)
......@@ -10,7 +10,8 @@ def __getBranches(url, token, id):
HEADER = {
'private_token': token,
'Accept': 'application/json'
'Accept': 'application/json',
'Content-Type': 'application/json',
}
page = 1
......@@ -44,7 +45,8 @@ def __getProtectedBranches(url, token, id):
HEADER = {
'private_token': token,
'Accept': 'application/json'
'Accept': 'application/json',
'Content-Type': 'application/json',
}
page = 1
......@@ -78,7 +80,8 @@ def __createBranch(url, token, id, name, ref):
HEADER = {
'private_token': token,
'Accept': 'application/json'
'Accept': 'application/json',
'Content-Type': 'application/json',
}
PARAMS = {
......@@ -95,7 +98,8 @@ def __createProtectedBranch(url, token, id, access):
HEADER = {
'private_token': token,
'Accept': 'application/json'
'Accept': 'application/json',
'Content-Type': 'application/json',
}
PARAMS = {}
......