Add a form for uploading DiffCommits
Review Request #9642 — Created Feb. 15, 2018 and submitted — Latest diff uploaded
A new form has been added to upload a
DiffCommit
and attach it to a
DiffSet
.
Ran unit tests.
Diff Revision 8
This is not the most recent revision of the diff. The latest diff is revision 19. See what's changed.
orig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
reviewboard/settings.py | |||
---|---|---|---|
Revision 5a4e5e4417efda38769c8e1fb280e1bb5659a9eb | New Change | ||
481 lines | |||
def _(s):
|
|||
482 |
'APPLICATION_MODEL': 'oauth.Application', |
482 |
'APPLICATION_MODEL': 'oauth.Application', |
483 |
'DEFAULT_SCOPES': 'root:read', |
483 |
'DEFAULT_SCOPES': 'root:read', |
484 |
'SCOPES': {}, |
484 |
'SCOPES': {}, |
485 |
}
|
485 |
}
|
486 | 486 | ||
487 | |||
488 |
fail_if_missing_dependencies() |
487 |
fail_if_missing_dependencies() |
reviewboard/diffviewer/forms.py |
---|
reviewboard/diffviewer/tests/test_forms.py |
---|