From 7e863d61ffefc2e6e40227587e115047afe4a961 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sat, 28 Oct 2017 17:13:34 -0400 Subject: [PATCH] Reorder HttpMethods to match RestSharp --- src/NzbDrone.Common/Http/HttpMethod.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/NzbDrone.Common/Http/HttpMethod.cs b/src/NzbDrone.Common/Http/HttpMethod.cs index 1fa33a823..8964bbef6 100644 --- a/src/NzbDrone.Common/Http/HttpMethod.cs +++ b/src/NzbDrone.Common/Http/HttpMethod.cs @@ -3,11 +3,12 @@ namespace NzbDrone.Common.Http public enum HttpMethod { GET, - PUT, POST, - HEAD, + PUT, DELETE, + HEAD, + OPTIONS, PATCH, - OPTIONS + MERGE } -} \ No newline at end of file +}