mirror of
https://github.com/nextcloud/passman.git
synced 2024-12-29 11:32:47 +08:00
56 lines
No EOL
897 B
PHP
56 lines
No EOL
897 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 VaultController extends Controller {
|
|
|
|
|
|
private $userId;
|
|
|
|
public function __construct($AppName, IRequest $request, $UserId) {
|
|
parent::__construct($AppName, $request);
|
|
$this->userId = $UserId;
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function create() {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function get() {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function update() {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function delete() {
|
|
return;
|
|
}
|
|
} |