- Added ESET sync functionality to periodically fetch devices and incidents. - Created new ESET service for API interactions, including authentication and data retrieval. - Introduced new database tables for storing ESET incidents and hardware contacts. - Updated hardware assets schema to include ESET-specific fields (UUID, specs, group). - Developed frontend templates for ESET overview, import, and testing. - Enhanced existing hardware creation form to auto-generate AnyDesk links. - Added global logout functionality to clear user session data. - Improved error handling and logging for ESET API interactions.
7 lines
198 B
SQL
7 lines
198 B
SQL
-- Add ESET group field to hardware_assets
|
|
|
|
ALTER TABLE hardware_assets
|
|
ADD COLUMN IF NOT EXISTS eset_group TEXT;
|
|
|
|
CREATE INDEX IF NOT EXISTS idx_hardware_eset_group ON hardware_assets(eset_group);
|