gitea/models/fixtures
Michael B. a90af22003
Let API create and edit system webhooks, attempt 2 (#33180)
This PR fixes inconsistencies between system and default webhooks in the
Gitea API. (See also #26418)
- A system webhook is a webhook that captures events for all
repositories.
- A default webhook is copied to a new repository when it is created. 

Before this PR `POST /api/v1/admin/hooks/` creates default webhooks (if
not configured otherwise) and `GET /api/v1/admin/hooks/` returns system
webhooks.

The PR introduces an optional query parameter to `GET
/api/v1/admin/hooks/` to enable selecting if either default, system or
both kind of webhooks should be retrieved. By default the flag is set to
return system webhooks keep current behaviour.

## Examples

### System Webhooks

#### Create

```
POST /api/v1/admin/hooks/

{
  "type": "gitea",
  "active": false,
  "branch_filter": "*",
  "events": [ "create", "..." ],
  "config": {
    "url": "http://...",
    "content_type": "json",
    "secret": "secret",
    "is_system_webhook": true // <-- controls hook type
  }
}
```

#### List
```
GET/api/v1/admin/hooks?type=system //type argument is optional here since it's the default
```

#### Others
The other relevant endpoints work as expected by referencing the hook by
id
```
GET /api/v1/admin/hooks/:id
PATCH /api/v1/admin/hooks/:id
DELETE /api/v1/admin/hooks/:id
```


### Default Webhooks

#### Create
```
POST /api/v1/admin/hooks/

{
  "type": "gitea",
  "active": false,
  "branch_filter": "*",
  "events": [ "create", "..." ],
  "config": {
    "url": "http://...",
    "content_type": "json",
    "secret": "secret",
    "is_system_webhook": false // optional, as false is the default value
  }
}
```

#### List
```
GET/api/v1/admin/hooks?type=default
```

#### Others
The other relevant endpoints work as expected by referencing the hook by
id
```
GET /api/v1/admin/hooks/:id
PATCH /api/v1/admin/hooks/:id
DELETE /api/v1/admin/hooks/:id
```
2025-01-13 17:17:39 +00:00
..
access_token.yml
access.yml
action_artifact.yml Add artifacts test fixture (#30300) 2024-11-01 10:29:54 +08:00
action_run_job.yml Refactor fixture loading for testing (#33024) 2024-12-30 04:06:57 +00:00
action_run.yml Fix bug on action list deleted branch (#32848) 2024-12-16 05:38:39 +08:00
action_runner_token.yml
action_task_output.yml Fix missing outputs for jobs with matrix (#32823) 2024-12-14 10:22:30 +08:00
action_task.yml Fix missing outputs for jobs with matrix (#32823) 2024-12-14 10:22:30 +08:00
action.yml
attachment.yml
branch.yml Fix bug on action list deleted branch (#32848) 2024-12-16 05:38:39 +08:00
collaboration.yml
comment.yml Fix the logic of finding the latest pull review commit ID (#32139) 2024-10-01 01:58:55 +00:00
commit_status_index.yml
commit_status.yml
deploy_key.yml
email_address.yml
external_login_user.yml
follow.yml
gpg_key_import.yml
gpg_key.yml
hook_task.yml
issue_assignees.yml
issue_index.yml Fix wrong display of recently pushed notification (#25812) 2024-05-21 17:00:35 +00:00
issue_label.yml
issue_user.yml
issue_watch.yml
issue.yml
label.yml Support org labels when adding labels by label names (#32988) 2024-12-26 19:14:49 +00:00
lfs_meta_object.yml Fix test fixtures for user2/lfs.git (#32477) 2024-11-12 05:41:22 +00:00
login_source.yml
milestone.yml
mirror.yml
notice.yml
notification.yml
oauth2_application.yml
oauth2_authorization_code.yml
oauth2_grant.yml
org_user.yml Limit org member view of restricted users (#32211) 2024-11-12 03:44:24 +00:00
project_board.yml
project_issue.yml
project.yml
protected_branch.yml
protected_tag.yml Refactor fixture loading for testing (#33024) 2024-12-30 04:06:57 +00:00
public_key.yml
pull_request.yml Update misspell to 0.5.1 and add misspellings.csv (#30573) 2024-04-27 08:03:49 +00:00
reaction.yml
release.yml
renamed_branch.yml
repo_archiver.yml
repo_indexer_status.yml
repo_license.yml Support repo license (#24872) 2024-10-01 15:25:08 -04:00
repo_redirect.yml
repo_topic.yml
repo_transfer.yml
repo_unit.yml Allow code search by filename (#32210) 2024-10-11 23:35:04 +00:00
repository.yml Reduce integration test overhead (#32475) 2024-11-14 19:28:46 +00:00
review.yml Use batch database operations instead of one by one to optimze api pulls (#32680) 2024-12-11 05:15:06 +08:00
star.yml
stopwatch.yml
system_setting.yml disable gravatar in test (#32529) 2024-11-21 04:30:48 +00:00
team_repo.yml
team_unit.yml Fix wrong display of recently pushed notification (#25812) 2024-05-21 17:00:35 +00:00
team_user.yml Fix wrong display of recently pushed notification (#25812) 2024-05-21 17:00:35 +00:00
team.yml Fix wrong display of recently pushed notification (#25812) 2024-05-21 17:00:35 +00:00
topic.yml
tracked_time.yml
two_factor.yml
user_blocking.yml
user_open_id.yml
user_redirect.yml
user.yml Fix GetInactiveUsers (#32540) 2024-11-21 04:55:32 +00:00
watch.yml
webauthn_credential.yml
webhook.yml Let API create and edit system webhooks, attempt 2 (#33180) 2025-01-13 17:17:39 +00:00