// Deprecated way to handle permission in components, check CanDo component // import React, { PropTypes, Component } from 'react'; // import Users from 'meteor/nova:users'; // const CanEditPost = ({user, post, children}) => { // if (Users.canEdit(user, post)) { // return children; // } else if (!user){ // return
Please log in.
; // } else { // returnSorry, you do not have permissions to edit this post at this time
; // } // }; // CanEditPost.propTypes = { // user: React.PropTypes.object, // post: React.PropTypes.object // } // CanEditPost.displayName = "CanEditPost"; // module.exports = CanEditPost;