From 601b54c244e4819b49a787ae7cecfca5ef4a54a5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 28 Jun 2017 14:09:59 -0700 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..c5f7b5307 100644 --- a/src/NzbDrone.Common/Http/HttpMethod.cs +++ b/src/NzbDrone.Common/Http/HttpMethod.cs @@ -1,13 +1,14 @@ -namespace NzbDrone.Common.Http +namespace NzbDrone.Common.Http { public enum HttpMethod { GET, - PUT, POST, - HEAD, + PUT, DELETE, + HEAD, + OPTIONS, PATCH, - OPTIONS + MERGE } } \ No newline at end of file