http options method on history provider

This commit is contained in:
Rio Jos
2025-04-24 14:12:59 +05:30
parent aa8e5c3d03
commit a19c9ba093
3 changed files with 4 additions and 2 deletions

View File

@ -12,8 +12,8 @@ A List of API endpoints that can be used for testing API Dash
#### For Testing HTTP PUT, PATCH, DELETE
- https://reqres.in/
#### For Testing HTTP OPTIONS, TRACE
- Use localhost servers, as TRACE and OPTIONS HTTP methods are not publicly available (used for diagnostic purposes)
#### For Testing HTTP OPTIONS
- https://reqbin.com/echo/options
#### For Testing sites with Bad Certificate
- https://badssl.com/

View File

@ -44,4 +44,5 @@ const _$HTTPVerbEnumMap = {
HTTPVerb.put: 'put',
HTTPVerb.patch: 'patch',
HTTPVerb.delete: 'delete',
HTTPVerb.options: 'options',
};

View File

@ -58,6 +58,7 @@ const _$HTTPVerbEnumMap = {
HTTPVerb.put: 'put',
HTTPVerb.patch: 'patch',
HTTPVerb.delete: 'delete',
HTTPVerb.options: 'options',
};
const _$ContentTypeEnumMap = {