* @link https://getkirby.com * @copyright Bastian Allgeier * @license https://getkirby.com/license */ class FilePermissions extends ModelPermissions { protected string $category = 'files'; protected function canChangeTemplate(): bool { if (count($this->model->blueprints()) <= 1) { return false; } return true; } }