Skip to content

Commit

Permalink
Fix incorrect Http verb in WolverineOptionsAttribute
Browse files Browse the repository at this point in the history
  • Loading branch information
haefele authored and jeremydmiller committed Jan 21, 2024
1 parent 60197d7 commit feecee5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Http/Wolverine.Http/ModifyHttpChainAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public WolverinePatchAttribute(string template) : base("PATCH", template)
/// </summary>
public class WolverineOptionsAttribute : WolverineHttpMethodAttribute
{
public WolverineOptionsAttribute(string template) : base("PATCH", template)
public WolverineOptionsAttribute(string template) : base("OPTIONS", template)
{
}
}
}

0 comments on commit feecee5

Please sign in to comment.