passman/controller/credentialcontroller.php

56 lines
943 B
PHP
Raw Normal View History

2016-09-09 23:36:35 +08:00
<?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 CredentialController extends Controller {
private $userId;
public function __construct($AppName, IRequest $request, $UserId){
parent::__construct($AppName, $request);
$this->userId = $UserId;
}
/**
* @NoAdminRequired
*/
public function create() {
return;
}
/**
* @NoAdminRequired
*/
2016-09-09 23:41:02 +08:00
public function get($credential_id) {
2016-09-09 23:36:35 +08:00
return;
}
/**
* @NoAdminRequired
*/
2016-09-09 23:41:02 +08:00
public function update($credential_id) {
2016-09-09 23:36:35 +08:00
return;
}
/**
* @NoAdminRequired
*/
2016-09-09 23:41:02 +08:00
public function delete($credential_id) {
2016-09-09 23:36:35 +08:00
return;
}
}