mirror of
https://github.com/github/codeql.git
synced 2026-05-05 13:45:19 +02:00
Fix test
This commit is contained in:
@@ -1 +1 @@
|
||||
| ProfileController.cs:8:25:8:31 | Delete1 | This action is missing an authorization check. |
|
||||
| ProfileController.cs:9:25:9:31 | Delete1 | This action is missing an authorization check. |
|
||||
|
||||
@@ -23,7 +23,7 @@ public class ProfileController : Controller {
|
||||
// GOOD: The Authorize attribute is used.
|
||||
[Authorize]
|
||||
public ActionResult Delete3(int id) {
|
||||
doThings()
|
||||
doThings();
|
||||
return View();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user