mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 19:38:23 +00:00 
			
		
		
		
	Move webhook into models/webhook/ (#17579)
This commit is contained in:
		| @@ -8,8 +8,8 @@ import ( | ||||
| 	"net/http" | ||||
| 	"testing" | ||||
|  | ||||
| 	"code.gitea.io/gitea/models" | ||||
| 	"code.gitea.io/gitea/models/db" | ||||
| 	"code.gitea.io/gitea/models/webhook" | ||||
| 	"code.gitea.io/gitea/modules/context" | ||||
| 	"code.gitea.io/gitea/modules/test" | ||||
|  | ||||
| @@ -27,7 +27,7 @@ func TestTestHook(t *testing.T) { | ||||
| 	TestHook(&context.APIContext{Context: ctx, Org: nil}) | ||||
| 	assert.EqualValues(t, http.StatusNoContent, ctx.Resp.Status()) | ||||
|  | ||||
| 	db.AssertExistsAndLoadBean(t, &models.HookTask{ | ||||
| 	db.AssertExistsAndLoadBean(t, &webhook.HookTask{ | ||||
| 		RepoID: 1, | ||||
| 		HookID: 1, | ||||
| 	}, db.Cond("is_delivered=?", false)) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user