From e253f86c63cbc91ea96610f8b8d847a0e4695c76 Mon Sep 17 00:00:00 2001 From: Luke Barnard Date: Thu, 25 May 2017 10:23:26 +0100 Subject: [PATCH] Improve teamToken prop doc on homePage --- src/components/structures/HomePage.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/structures/HomePage.js b/src/components/structures/HomePage.js index 4f93eaae21..5518cb95bb 100644 --- a/src/components/structures/HomePage.js +++ b/src/components/structures/HomePage.js @@ -27,7 +27,8 @@ module.exports = React.createClass({ propTypes: { // URL base of the team server. teamServerUrl: React.PropTypes.string.isRequired, - // Team token. Optional. If unset, the homePageUrl will be used + // Team token. Optional. If set, used as to get the static homepage of the team + // associated. If unset, homePageUrl will be used. teamToken: React.PropTypes.string, // URL to use as the iFrame src. Defaults to /home.html. homePageUrl: React.PropTypes.string,