mirror of
https://github.com/nextcloud/passman.git
synced 2025-01-04 06:23:43 +08:00
44 lines
No EOL
792 B
PHP
44 lines
No EOL
792 B
PHP
<?php
|
|
/**
|
|
* Nextcloud - passman
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Sander Brand <brantje@gmail.com>
|
|
* @copyright Sander Brand 2016
|
|
*/
|
|
|
|
namespace OCA\Passman\Controller;
|
|
|
|
use OCP\IRequest;
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
use OCP\AppFramework\Controller;
|
|
|
|
class FileController extends Controller {
|
|
|
|
|
|
private $userId;
|
|
|
|
public function __construct($AppName, IRequest $request, $UserId){
|
|
parent::__construct($AppName, $request);
|
|
$this->userId = $UserId;
|
|
}
|
|
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function upload($credential_id) {
|
|
return;
|
|
}
|
|
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function delete($credential_id, $file_id) {
|
|
return;
|
|
}
|
|
} |