mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
The provisioning API has 3 access levels: * Admin * SubAdmin * User This middleware adds a check for the SubAdmin part.
11 lines
No EOL
269 B
PHP
11 lines
No EOL
269 B
PHP
<?php
|
|
|
|
namespace OCA\Provisioning_API\Middleware\Exceptions;
|
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
class NotSubAdminException extends \Exception {
|
|
public function __construct() {
|
|
parent::__construct('Logged in user must be at least a sub admin', Http::STATUS_FORBIDDEN);
|
|
}
|
|
} |