summaryrefslogtreecommitdiffstats
path: root/web/react/components/tutorial
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-12-01 11:04:24 -0800
committerReed Garmsen <rgarmsen2295@gmail.com>2015-12-10 09:38:19 -0800
commit87d7db3438d46dcd7d84a65739287e25bbb3644f (patch)
treeb467f8f8af70c43eb59d9bf0dae86f439de638c1 /web/react/components/tutorial
parentc6bd44f14a2ae5b63b25cff0b972ba75af6c1bbc (diff)
downloadchat-87d7db3438d46dcd7d84a65739287e25bbb3644f.tar.gz
chat-87d7db3438d46dcd7d84a65739287e25bbb3644f.tar.bz2
chat-87d7db3438d46dcd7d84a65739287e25bbb3644f.zip
Added legal and support settings to sys console and implemented support for options in app
Diffstat (limited to 'web/react/components/tutorial')
-rw-r--r--web/react/components/tutorial/tutorial_intro_screens.jsx25
1 files changed, 16 insertions, 9 deletions
diff --git a/web/react/components/tutorial/tutorial_intro_screens.jsx b/web/react/components/tutorial/tutorial_intro_screens.jsx
index 9360d31f8..7ab1e5512 100644
--- a/web/react/components/tutorial/tutorial_intro_screens.jsx
+++ b/web/react/components/tutorial/tutorial_intro_screens.jsx
@@ -112,23 +112,30 @@ export default class TutorialIntroScreens extends React.Component {
const circles = this.createCircles();
- return (
- <div>
- <h3>{'You’re all set'}</h3>
- <p>
- {inviteModalLink}
- {' when you’re ready.'}
- </p>
+ let supportInfo = null;
+ if (global.window.mm_config.SupportEmail) {
+ supportInfo = (
<p>
{'Need anything, just email us at '}
<a
- href='mailto:feedback@mattermost.com'
+ href={'mailto:' + global.window.mm_config.SupportEmail}
target='_blank'
>
- {'feedback@mattermost.com'}
+ {global.window.mm_config.SupportEmail}
</a>
{'.'}
</p>
+ );
+ }
+
+ return (
+ <div>
+ <h3>{'You’re all set'}</h3>
+ <p>
+ {inviteModalLink}
+ {' when you’re ready.'}
+ </p>
+ {supportInfo}
{'Click “Next” to enter Town Square. This is the first channel teammates see when they sign up. Use it for posting updates everyone needs to know.'}
{circles}
</div>