Commit 94f12cea authored by Roman Lacko's avatar Roman Lacko
Browse files

change PUT methods to POST for user blockation methods

parent 7c015692
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -267,12 +267,12 @@ my $requests = {


    # Block/unblock
    # Block/unblock
    user_block      => {
    user_block      => {
        method      => "PUT",
        method      => "POST",
        path        => "/users/<uid>/block",
        path        => "/users/<uid>/block",
    },
    },


    user_unblock    => {
    user_unblock    => {
        method      => "PUT",
        method      => "POST",
        path        => "/users/<uid>/unblock",
        path        => "/users/<uid>/unblock",
    },
    },