From 70e86809c49facbdbd66f06526d90cfc46f72b53 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Thu, 4 May 2017 19:51:12 +0100 Subject: [PATCH] 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 --- patchwork/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.47.3