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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2021-08-16 11:12:34 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2021-08-17 21:56:49 +0300
commitf23dcc47b177d5c101baeab72223ac324487c030 (patch)
treead82f645e9cdfc84e5df29841e84d7d2dd207150 /src/models
parent1454d1f11f72d1e893fcf870bd61073daf1ee17f (diff)
Fix jsdoc/tag-lines
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src/models')
-rw-r--r--src/models/calendarObject.js5
-rw-r--r--src/models/consts.js5
-rw-r--r--src/models/principal.js3
-rw-r--r--src/models/syncStatus.js8
-rw-r--r--src/models/task.js8
5 files changed, 23 insertions, 6 deletions
diff --git a/src/models/calendarObject.js b/src/models/calendarObject.js
index 86239b38..0aecab23 100644
--- a/src/models/calendarObject.js
+++ b/src/models/calendarObject.js
@@ -2,7 +2,9 @@
* Nextcloud - Tasks
*
* @copyright Copyright (c) 2019 Georg Ehrke
+ *
* @author Georg Ehrke <oc.list@georgehrke.com>
+ *
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
@@ -12,11 +14,12 @@
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
import { getParserManager } from 'calendar-js'
import {
diff --git a/src/models/consts.js b/src/models/consts.js
index 30f6217e..8ed31961 100644
--- a/src/models/consts.js
+++ b/src/models/consts.js
@@ -2,7 +2,9 @@
* Nextcloud - Tasks
*
* @copyright Copyright (c) 2020 Georg Ehrke
+ *
* @author Georg Ehrke <oc.list@georgehrke.com>
+ *
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
@@ -12,11 +14,12 @@
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
const COMPONENT_NAME_EVENT = 'VEVENT'
const COMPONENT_NAME_JOURNAL = 'VJOURNAL'
diff --git a/src/models/principal.js b/src/models/principal.js
index f1fbd7fe..313aadcc 100644
--- a/src/models/principal.js
+++ b/src/models/principal.js
@@ -2,7 +2,9 @@
* Nextcloud - Tasks
*
* @copyright Copyright (c) 2019 Georg Ehrke
+ *
* @author Georg Ehrke <oc.list@georgehrke.com>
+ *
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
@@ -17,6 +19,7 @@
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
/**
diff --git a/src/models/syncStatus.js b/src/models/syncStatus.js
index 7b8ac68e..fec7e6f8 100644
--- a/src/models/syncStatus.js
+++ b/src/models/syncStatus.js
@@ -2,8 +2,11 @@
* Nextcloud - Tasks
*
* @author John Molakvoæ
+ *
* @copyright 2018 John Molakvoæ <skjnldsv@protonmail.com>
+ *
* @author Raimund Schlüßler
+ *
* @copyright 2021 Raimund Schlüßler <raimund.schluessler@mailbox.org>
*
* This library is free software; you can redistribute it and/or
@@ -13,11 +16,12 @@
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
- * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
export default class SyncStatus {
diff --git a/src/models/task.js b/src/models/task.js
index 56055fef..8b977fe8 100644
--- a/src/models/task.js
+++ b/src/models/task.js
@@ -2,8 +2,11 @@
* Nextcloud - Tasks
*
* @author John Molakvoæ
+ *
* @copyright 2018 John Molakvoæ <skjnldsv@protonmail.com>
+ *
* @author Raimund Schlüßler
+ *
* @copyright 2021 Raimund Schlüßler <raimund.schluessler@mailbox.org>
*
* This library is free software; you can redistribute it and/or
@@ -13,11 +16,12 @@
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
- * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ * License along with this library. If not, see <http://www.gnu.org/licenses/>.
+ *
*/
import moment from '@nextcloud/moment'