. * */ namespace OCA\News\Controller; use \OCA\AppFramework\Controller\Controller; use \OCA\AppFramework\Core\API; use \OCA\AppFramework\Http\Request; class UserSettingsController extends Controller { public function __construct(API $api, Request $request){ parent::__construct($api, $request); } /** * @IsAdminExemption * @IsSubAdminExemption * @Ajax */ public function read(){ } /** * @IsAdminExemption * @IsSubAdminExemption * @Ajax */ public function show(){ } /** * @IsAdminExemption * @IsSubAdminExemption * @Ajax */ public function hide(){ } }