-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Develop into master #95
Conversation
Tests to check abstract and virtual methods
Move some tests
* Action convection name
…er explicit conversion for floats (#84) Create random ParamWithSeveralTypes More tests
Fix CodeQL alerts Test
* Add net7.0 Target Version Update nugets * add net 7 in workflows * update global.json * remove extra builds ci.yml
Tests for HttpResponseMessageExtensions
* Allow IFormFile Refactor IncludeContentAsFormUrlEncoded Remove Newtonsoft.Json dependecy * Update documentation * Refactor GivenFile
Move TypeExtensions
* Change to use TestServerArgumentFromType * fix parameter names order * Change Tokenizers to use argument instead of parameters * Fix warnings * Only apply canBeObjectWithMultipleFroms in Net 8 or greater
return Ok(); | ||
} | ||
[HttpDelete("~/delete1/{index}")] | ||
public IActionResult Delete1(int index) |
Check failure
Code scanning / CodeQL
Missing function level access control High test
return Ok(); | ||
} | ||
[HttpDelete("~/delete2/{index}")] | ||
public IActionResult Delete2(int index, Pagination pagination) |
Check failure
Code scanning / CodeQL
Missing function level access control High test
return Ok(); | ||
} | ||
[Route("~/delete3/{index}"), HttpDelete] | ||
public IActionResult Delete3(int index, Pagination pagination) |
Check failure
Code scanning / CodeQL
Missing function level access control High test
No description provided.