feat: Add Bug Bounty Program to help page (v0.6.0-r18)
- Added Bug Bounty card in support section with description - Added Bug Bounty button linking to https://secubox.cybermood.eu/SecuBox_BugBounty_Announcement.html#contact - Encourages responsible security disclosure with rewards - Opens in new tab for easy access to program details 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
fe96791d20
commit
6b7436783d
@ -119,6 +119,11 @@ return view.extend({
|
|||||||
title: _('Contribuer au code'),
|
title: _('Contribuer au code'),
|
||||||
text: _('Forkez le dépôt SecuBox, proposez des améliorations, corrigez des bugs, créez de nouveaux helpers.')
|
text: _('Forkez le dépôt SecuBox, proposez des améliorations, corrigez des bugs, créez de nouveaux helpers.')
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: '🐛',
|
||||||
|
title: _('Bug Bounty Program'),
|
||||||
|
text: _('Signalez des vulnérabilités de sécurité et recevez des récompenses. Consultez notre programme officiel.')
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: '🤗',
|
icon: '🤗',
|
||||||
title: _('Soutenir le projet'),
|
title: _('Soutenir le projet'),
|
||||||
@ -142,12 +147,20 @@ return view.extend({
|
|||||||
icon: '💡',
|
icon: '💡',
|
||||||
label: _('Ouvrir la FAQ')
|
label: _('Ouvrir la FAQ')
|
||||||
}),
|
}),
|
||||||
|
E('a', {
|
||||||
|
'class': 'sb-help-btn sb-help-footer',
|
||||||
|
'href': 'https://secubox.cybermood.eu/SecuBox_BugBounty_Announcement.html#contact',
|
||||||
|
'target': '_blank'
|
||||||
|
}, [
|
||||||
|
E('span', { 'class': 'sb-help-icon' }, '🐛'),
|
||||||
|
E('span', { 'class': 'sb-help-label' }, _('Bug Bounty Program'))
|
||||||
|
]),
|
||||||
E('a', {
|
E('a', {
|
||||||
'class': 'sb-help-btn sb-help-footer',
|
'class': 'sb-help-btn sb-help-footer',
|
||||||
'href': 'mailto:contact@cybermind.fr?subject=SecuBox%20Feedback'
|
'href': 'mailto:contact@cybermind.fr?subject=SecuBox%20Feedback'
|
||||||
}, [
|
}, [
|
||||||
E('span', { 'class': 'sb-help-icon' }, '✉️'),
|
E('span', { 'class': 'sb-help-icon' }, '✉️'),
|
||||||
E('span', { 'class': 'sb-help-label' }, _('Écrire à l’équipe'))
|
E('span', { 'class': 'sb-help-label' }, _('Écrire à l'équipe'))
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
]);
|
]);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user