From: Stephen Finucane Date: Thu, 4 May 2017 18:51:12 +0000 (+0100) Subject: settings: Enable the REST API by default X-Git-Tag: v2.0.0-rc1^0 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=70e86809c49facbdbd66f06526d90cfc46f72b53;p=thirdparty%2Fpatchwork.git settings: Enable the REST API by default The release notes say this is already the case. As the API is now functionally complete, there's no reason not to toggle this. Make it so. Signed-off-by: Stephen Finucane --- diff --git a/patchwork/settings/base.py b/patchwork/settings/base.py index e6d34ba8..5f6aebee 100644 --- a/patchwork/settings/base.py +++ b/patchwork/settings/base.py @@ -224,7 +224,7 @@ NOTIFICATION_FROM_EMAIL = DEFAULT_FROM_EMAIL ENABLE_XMLRPC = False # Set to True to enable the Patchwork REST API -ENABLE_REST_API = False +ENABLE_REST_API = True REST_RESULTS_PER_PAGE = 30