summaryrefslogtreecommitdiffstats
path: root/models/cardComments.js
diff options
context:
space:
mode:
authorhuneau romain <huneau.romain@gmail.com>2017-05-11 12:15:02 +0200
committerhuneau romain <huneau.romain@gmail.com>2017-05-11 12:15:02 +0200
commitb5271e5346cde2563d36c64a300729e27336a86b (patch)
tree98d29cf0deeaeb8a6d337c8dff4b8cf9268541c6 /models/cardComments.js
parent548172949aaaea054f203d5fdc3286c90c5ae8e1 (diff)
downloadwekan-b5271e5346cde2563d36c64a300729e27336a86b.tar.gz
wekan-b5271e5346cde2563d36c64a300729e27336a86b.tar.bz2
wekan-b5271e5346cde2563d36c64a300729e27336a86b.zip
add token authentication, only admin can use api
Diffstat (limited to 'models/cardComments.js')
-rw-r--r--models/cardComments.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/models/cardComments.js b/models/cardComments.js
index 64af4433..e51275a4 100644
--- a/models/cardComments.js
+++ b/models/cardComments.js
@@ -84,6 +84,7 @@ if (Meteor.isServer) {
//CARD COMMENT REST API
if (Meteor.isServer) {
JsonRoutes.add('GET', '/api/boards/:boardId/cards/:cardId/comments', function (req, res, next) {
+ Authentication.checkUserId( req.userId);
const paramBoardId = req.params.boardId;
const paramCardId = req.params.cardId;
JsonRoutes.sendResult(res, {
@@ -99,6 +100,7 @@ if (Meteor.isServer) {
});
JsonRoutes.add('GET', '/api/boards/:boardId/cards/:cardId/comments/:commentId', function (req, res, next) {
+ Authentication.checkUserId( req.userId);
const paramBoardId = req.params.boardId;
const paramCommentId = req.params.commentId;
const paramCardId = req.params.cardId;
@@ -109,6 +111,7 @@ if (Meteor.isServer) {
});
JsonRoutes.add('POST', '/api/boards/:boardId/cards/:cardId/comments', function (req, res, next) {
+ Authentication.checkUserId( req.userId);
const paramBoardId = req.params.boardId;
const paramCardId = req.params.cardId;
const id = CardComments.insert({
@@ -126,6 +129,7 @@ if (Meteor.isServer) {
});
JsonRoutes.add('DELETE', '/api/boards/:boardId/cards/:cardId/comments/:commentId', function (req, res, next) {
+ Authentication.checkUserId( req.userId);
const paramBoardId = req.params.boardId;
const paramCommentId = req.params.commentId;
const paramCardId = req.params.cardId;