Skip to content

Commit 3e8054b

Browse files
authored
Fix broken links (Guidelines, Slack) (#32)
* Fix broken links to Guidelines page. * Fix broken links to Slack workspace. As mentioned in securego/gosec/issues/899, the heroku links are broken. This link works for people who are already invited to the Slack workspace. Someone with Slack admin permissions should probably generate an invite link, see: https://slack.com/help/articles/201330256-Invite-new-members-to-your-workspace#share-an-invitation-link
1 parent 629cdd2 commit 3e8054b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

website/core/Footer.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class Footer extends React.Component {
3434
</a>
3535
<div>
3636
<h5>Docs</h5>
37-
<a href={this.docUrl('guidelines.html', this.props.language)}>
37+
<a href={this.docUrl('rules/rule-intro.html', this.props.language)}>
3838
Secure development guidelines
3939
</a>
4040
<a href='https://godoc.org/github.com/securego/gosec'>
@@ -49,7 +49,7 @@ class Footer extends React.Component {
4949
rel="noreferrer noopener">
5050
Stack Overflow
5151
</a>
52-
<a href="http://securego.herokuapp.com/">Slack</a>
52+
<a href="https://securego.slack.com/">Slack</a>
5353
</div>
5454
<div>
5555
<h5>More</h5>

website/pages/en/help.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ class Help extends React.Component {
2727
const supportLinks = [
2828
{
2929
content: `Learn more using the [guidelines on this site.](${docUrl(
30-
'guidelines.html',
30+
'rules/rule-intro.html',
3131
language
3232
)})`,
3333
title: 'Browse Docs',
3434
},
3535
{
36-
content: 'Ask us questions on [Slack](http://securego.herokuapp.com/).',
36+
content: 'Ask us questions on [Slack](https://securego.slack.com/).',
3737
title: 'Join the community',
3838
},
3939
{

0 commit comments

Comments
 (0)