-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delegate signers management to the external sign service
- Loading branch information
1 parent
2d4dc5d
commit 22a6e02
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Delegate signers management to the external sign service. [elioschmutz] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -228,7 +228,8 @@ def test_can_start_signing_a_document_in_draft_state(self, mocker): | |
'created': u'2024-02-18T15:45:00', | ||
'job_id': '1', | ||
'redirect_url': 'http://external.example.org/signing-requests/123', | ||
'signers': [ | ||
'signers': [], | ||
'editors': [ | ||
{ | ||
'email': '[email protected]', | ||
'userid': 'regular_user', | ||
|
@@ -260,7 +261,8 @@ def test_can_start_signing_a_document_in_final_state(self, mocker): | |
'created': u'2024-02-18T15:45:00', | ||
'job_id': '1', | ||
'redirect_url': 'http://external.example.org/signing-requests/123', | ||
'signers': [ | ||
'signers': [], | ||
'editors': [ | ||
{ | ||
'email': '[email protected]', | ||
'userid': 'regular_user', | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters