Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrantje <brantje@gmail.com>2016-12-19 20:52:32 +0300
committerbrantje <brantje@gmail.com>2016-12-19 20:52:32 +0300
commit4aa631491576b80a3fc370643e828fa8465479e8 (patch)
tree6729c6678f1f1190110b5e0c9984be83e7b55b45 /controller
parent89cc87ba7088f78c83fe23749f4469584545006f (diff)
Create translation controller
Diffstat (limited to 'controller')
-rw-r--r--controller/translationcontroller.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/controller/translationcontroller.php b/controller/translationcontroller.php
new file mode 100644
index 00000000..0e5a2388
--- /dev/null
+++ b/controller/translationcontroller.php
@@ -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(){
+
+ }
+} \ No newline at end of file