Fixed typo in server/api/utils (#9714)

no issue

- removed the extra `*` from the jsdoc of the handlePermissions function
This commit is contained in:
Antony Garand 2018-07-10 06:20:43 -04:00 committed by Katharina Irrgang
parent 865acecaef
commit 742eed99bd

View File

@ -193,7 +193,7 @@ utils = {
* ## Handle Permissions
* @param {String} docName
* @param {String} method (browse || read || edit || add || destroy)
* * @param {Array} unsafeAttrNames - attribute names (e.g. post.status) that could change the outcome
* @param {Array} unsafeAttrNames - attribute names (e.g. post.status) that could change the outcome
* @returns {Function}
*/
handlePermissions: function handlePermissions(docName, method, unsafeAttrNames) {