Skip to content

Commit eca9f0f

Browse files
committed
remove secret field
1 parent d2abaa2 commit eca9f0f

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

convoy/api/application.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def create(self, query, data):
2424
----------
2525
data = {
2626
"name": "",
27-
"support_email": "",
28-
"secret": ""
27+
"support_email": ""
2928
}
3029
'''
3130
response = self.client.httpPost("/applications", query, data)
@@ -45,8 +44,7 @@ def update(self, id, query, data):
4544
----------
4645
data = {
4746
"name": "",
48-
"support_email": "",
49-
"secret": ""
47+
"support_email": ""
5048
}
5149
'''
5250
response = self.client.httpPut("/applications/%s" % id, query, data)

0 commit comments

Comments
 (0)