?iť?

Your IP : 3.144.117.167


Current Path : /home/scgforma/www/cloud/apps/gallery/lib/Controller/
Upload File :
Current File : /home/scgforma/www/cloud/apps/gallery/lib/Controller/ConfigPublicController.php

<?php
/**
 * Nextcloud - Gallery
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Olivier Paroz <galleryapps@oparoz.com>
 *
 * @copyright Olivier Paroz 2017
 */

namespace OCA\Gallery\Controller;

/**
 * Class ConfigPublicController
 *
 * Note: Type casting only works if the "@param" parameters are also included in this class as
 * their not yet inherited
 *
 * @package OCA\Gallery\Controller
 */
class ConfigPublicController extends ConfigController {

	/**
	 * @PublicPage
	 *
	 * Returns a list of supported features
	 *
	 * @inheritDoc
	 *
	 * @param bool $extramediatypes
	 */
	public function get($extramediatypes = false) {
		return parent::get($extramediatypes);
	}

}