Skip to content

Commit 6ba0e67

Browse files
Add Mobile Operator role to Official Assistance and update Marketplace description
- Added 'Mobile Operator' role to `src/OfficialAssistance.jsx` with tools for IoT security, anti-stealing, and signal integrity. - Updated the 'Official Assistance' tool description in `src/Marketplace.jsx` to include Mobile Operators. - Verified changes via unit tests and visual inspection with Playwright screenshots. Co-authored-by: GYFX35 <134739293+GYFX35@users.noreply.github.com>
1 parent 249bfed commit 6ba0e67

2 files changed

Lines changed: 11 additions & 1 deletion

File tree

src/Marketplace.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const tools = [
4040
{
4141
id: 'assistance',
4242
name: 'Official Assistance',
43-
description: 'Integrated support tools for Police, Military, and Gendarmerie.',
43+
description: 'Integrated support tools for Police, Military, Gendarmerie, and Mobile Operators.',
4444
icon: '🛡️'
4545
}
4646
];

src/OfficialAssistance.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,16 @@ const assistanceRoles = {
3030
{ id: 'traffic', name: 'Traffic Management', icon: '🚦', desc: 'Coordination of road safety and major transit routes.' },
3131
{ id: 'response', name: 'Specialized Response', icon: '🚨', desc: 'Elite units for counter-terrorism and high-risk interventions.' }
3232
]
33+
},
34+
mobile_operator: {
35+
title: 'Mobile Operator',
36+
icon: '📱',
37+
description: 'Telecommunications security, IoT protection, and prevention of internet data theft.',
38+
tools: [
39+
{ id: 'iot_audit', name: 'IoT Security Audit', icon: '🤖', desc: 'Scan connected IoT devices for vulnerabilities and unauthorized access.' },
40+
{ id: 'anti_stealing', name: 'Anti-Stealing Guard', icon: '🔒', desc: 'Detect and prevent bandwidth or data theft from mobile networks.' },
41+
{ id: 'signal_integrity', name: 'Signal Integrity', icon: '📶', desc: 'Monitor network signal strength and detect interference or spoofing.' }
42+
]
3343
}
3444
};
3545

0 commit comments

Comments
 (0)