mirror of
https://github.com/nextcloud/server.git
synced 2026-06-16 04:00:15 -04:00
15 lines
264 B
PHP
15 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';
|
|
}
|