api/graph: fix invalid @access directive in WebhookEvent enum

Fixes the following schema error:

    Directive access is not applicable on ENUM_VALUE.
This commit is contained in:
Simon Ser 2023-08-18 10:28:14 +00:00 committed by Drew DeVault
parent 59efc97987
commit 4de526de53
1 changed files with 3 additions and 3 deletions

View File

@ -172,9 +172,9 @@ type OAuthClient {
}
enum WebhookEvent {
REPO_CREATED @access(scope: REPOSITORIES, kind: RO)
REPO_UPDATE @access(scope: REPOSITORIES, kind: RO)
REPO_DELETED @access(scope: REPOSITORIES, kind: RO)
REPO_CREATED
REPO_UPDATE
REPO_DELETED
}
interface WebhookSubscription {