mirror of
https://github.com/nextcloud/server.git
synced 2026-06-18 21:21:48 -04:00
16 lines
264 B
PHP
16 lines
264 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
||
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
*/
|
||
|
|
|
||
|
|
namespace OCA\Webhooks\Db;
|
||
|
|
|
||
|
|
enum AuthMethod: string {
|
||
|
|
case None = 'none';
|
||
|
|
case Header = 'header';
|
||
|
|
}
|