Create translation controller

This commit is contained in:
brantje 2016-12-19 18:52:32 +01:00
parent 89cc87ba70
commit 4aa6314915
No known key found for this signature in database
GPG key ID: 5FF1D117F918687F

View file

@ -0,0 +1,36 @@
<?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\AppFramework\Db\DoesNotExistException;
use OCP\IRequest;
use OCP\AppFramework\Http\JSONResponse;
use OCP\AppFramework\ApiController;
use OCA\Passman\Service\FileService;
class TranslationController extends ApiController {
private $userId;
private $fileService;
public function __construct($AppName,
IRequest $request
){
parent::__construct($AppName, $request);
}
/**
* @NoAdminRequired
*/
public function getLanguageStrings(){
}
}