allow function endpoints to be used w/ any method
This commit is contained in:
parent
4903b6320a
commit
ba79856131
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ public class FuncEndpoint : RouterBase
|
|||
Function = function;
|
||||
}
|
||||
|
||||
public override HttpMethod Method => HttpMethod.GET;
|
||||
public override HttpMethod Method => HttpMethod.Any;
|
||||
|
||||
public override int Arguments => 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue