mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
20 lines
No EOL
449 B
JavaScript
20 lines
No EOL
449 B
JavaScript
const CanViewPost = React.createClass({
|
|
|
|
propTypes: {
|
|
user: React.PropTypes.object,
|
|
post: React.PropTypes.object
|
|
},
|
|
|
|
render() {
|
|
if (Users.can.viewPost(this.props.user, this.props.document)) {
|
|
return this.props.children;
|
|
} else if (!this.props.user){
|
|
return <p>Please log in.</p>;
|
|
} else {
|
|
return <p>Sorry, you do not have permissions to post at this time</p>;
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
module.exports = CanViewPost; |