Fix jwt-token
This commit is contained in:
519
client/src/components/management/AuditLogs.jsx
Normal file
519
client/src/components/management/AuditLogs.jsx
Normal file
@@ -0,0 +1,519 @@
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import { useTranslation } from '../../utils/tempTranslations';
|
||||
|
||||
const AuditLogs = () => {
|
||||
const { t } = useTranslation();
|
||||
const [auditLogs, setAuditLogs] = useState([]);
|
||||
const [loading, setLoading] = useState(true);
|
||||
const [error, setError] = useState(null);
|
||||
const [filters, setFilters] = useState({
|
||||
page: 1,
|
||||
limit: 50,
|
||||
level: '',
|
||||
action: '',
|
||||
tenantId: '',
|
||||
userId: '',
|
||||
startDate: '',
|
||||
endDate: '',
|
||||
search: ''
|
||||
});
|
||||
const [pagination, setPagination] = useState({});
|
||||
const [availableActions, setAvailableActions] = useState([]);
|
||||
const [summary, setSummary] = useState({});
|
||||
|
||||
useEffect(() => {
|
||||
fetchAuditLogs();
|
||||
fetchAvailableActions();
|
||||
fetchSummary();
|
||||
}, [filters]);
|
||||
|
||||
const fetchAuditLogs = async () => {
|
||||
try {
|
||||
setLoading(true);
|
||||
const queryParams = new URLSearchParams();
|
||||
|
||||
Object.keys(filters).forEach(key => {
|
||||
if (filters[key]) {
|
||||
queryParams.append(key, filters[key]);
|
||||
}
|
||||
});
|
||||
|
||||
const token = localStorage.getItem('managementToken');
|
||||
const response = await fetch(`/api/management/audit-logs?${queryParams}`, {
|
||||
headers: {
|
||||
'Authorization': `Bearer ${token}`,
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
});
|
||||
|
||||
if (!response.ok) {
|
||||
throw new Error('Failed to fetch audit logs');
|
||||
}
|
||||
|
||||
const data = await response.json();
|
||||
setAuditLogs(data.data.auditLogs);
|
||||
setPagination(data.data.pagination);
|
||||
setError(null);
|
||||
} catch (err) {
|
||||
setError(err.message);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
};
|
||||
|
||||
const fetchAvailableActions = async () => {
|
||||
try {
|
||||
const token = localStorage.getItem('managementToken');
|
||||
const response = await fetch('/api/management/audit-logs/actions', {
|
||||
headers: {
|
||||
'Authorization': `Bearer ${token}`,
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
const data = await response.json();
|
||||
setAvailableActions(data.data);
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('Failed to fetch available actions:', err);
|
||||
}
|
||||
};
|
||||
|
||||
const fetchSummary = async () => {
|
||||
try {
|
||||
const token = localStorage.getItem('managementToken');
|
||||
const response = await fetch('/api/management/audit-logs/summary', {
|
||||
headers: {
|
||||
'Authorization': `Bearer ${token}`,
|
||||
'Content-Type': 'application/json'
|
||||
}
|
||||
});
|
||||
|
||||
if (response.ok) {
|
||||
const data = await response.json();
|
||||
setSummary(data.data);
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('Failed to fetch summary:', err);
|
||||
}
|
||||
};
|
||||
|
||||
const handleFilterChange = (key, value) => {
|
||||
setFilters(prev => ({
|
||||
...prev,
|
||||
[key]: value,
|
||||
page: 1 // Reset to first page when filtering
|
||||
}));
|
||||
};
|
||||
|
||||
const handlePageChange = (newPage) => {
|
||||
setFilters(prev => ({
|
||||
...prev,
|
||||
page: newPage
|
||||
}));
|
||||
};
|
||||
|
||||
const formatTimestamp = (timestamp) => {
|
||||
return new Date(timestamp).toLocaleString();
|
||||
};
|
||||
|
||||
const getLevelBadgeClass = (level) => {
|
||||
switch (level) {
|
||||
case 'INFO':
|
||||
return 'bg-blue-100 text-blue-800';
|
||||
case 'WARNING':
|
||||
return 'bg-yellow-100 text-yellow-800';
|
||||
case 'ERROR':
|
||||
return 'bg-red-100 text-red-800';
|
||||
case 'CRITICAL':
|
||||
return 'bg-red-200 text-red-900 font-bold';
|
||||
default:
|
||||
return 'bg-gray-100 text-gray-800';
|
||||
}
|
||||
};
|
||||
|
||||
const getSuccessIndicator = (success) => {
|
||||
if (success === true) {
|
||||
return <span className="text-green-600">✓</span>;
|
||||
} else if (success === false) {
|
||||
return <span className="text-red-600">✗</span>;
|
||||
}
|
||||
return <span className="text-gray-400">-</span>;
|
||||
};
|
||||
|
||||
const clearFilters = () => {
|
||||
setFilters({
|
||||
page: 1,
|
||||
limit: 50,
|
||||
level: '',
|
||||
action: '',
|
||||
tenantId: '',
|
||||
userId: '',
|
||||
startDate: '',
|
||||
endDate: '',
|
||||
search: ''
|
||||
});
|
||||
};
|
||||
|
||||
return (
|
||||
<div className="space-y-6">
|
||||
{/* Header */}
|
||||
<div className="flex justify-between items-center">
|
||||
<h1 className="text-3xl font-bold text-gray-900">
|
||||
{t('management.auditLogs') || 'Security Audit Logs'}
|
||||
</h1>
|
||||
<button
|
||||
onClick={() => window.location.reload()}
|
||||
className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md"
|
||||
>
|
||||
{t('common.refresh') || 'Refresh'}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{/* Summary Statistics */}
|
||||
{summary.summary && (
|
||||
<div className="grid grid-cols-1 md:grid-cols-5 gap-4">
|
||||
<div className="bg-white overflow-hidden shadow rounded-lg">
|
||||
<div className="p-5">
|
||||
<div className="flex items-center">
|
||||
<div className="w-0 flex-1">
|
||||
<dl>
|
||||
<dt className="text-sm font-medium text-gray-500 truncate">
|
||||
{t('management.totalLogs') || 'Total Logs'}
|
||||
</dt>
|
||||
<dd className="text-lg font-medium text-gray-900">
|
||||
{summary.summary.totalLogs}
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="bg-white overflow-hidden shadow rounded-lg">
|
||||
<div className="p-5">
|
||||
<div className="flex items-center">
|
||||
<div className="w-0 flex-1">
|
||||
<dl>
|
||||
<dt className="text-sm font-medium text-gray-500 truncate">
|
||||
{t('management.successfulActions') || 'Successful'}
|
||||
</dt>
|
||||
<dd className="text-lg font-medium text-green-600">
|
||||
{summary.summary.successfulActions}
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="bg-white overflow-hidden shadow rounded-lg">
|
||||
<div className="p-5">
|
||||
<div className="flex items-center">
|
||||
<div className="w-0 flex-1">
|
||||
<dl>
|
||||
<dt className="text-sm font-medium text-gray-500 truncate">
|
||||
{t('management.failedActions') || 'Failed'}
|
||||
</dt>
|
||||
<dd className="text-lg font-medium text-red-600">
|
||||
{summary.summary.failedActions}
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="bg-white overflow-hidden shadow rounded-lg">
|
||||
<div className="p-5">
|
||||
<div className="flex items-center">
|
||||
<div className="w-0 flex-1">
|
||||
<dl>
|
||||
<dt className="text-sm font-medium text-gray-500 truncate">
|
||||
{t('management.warnings') || 'Warnings'}
|
||||
</dt>
|
||||
<dd className="text-lg font-medium text-yellow-600">
|
||||
{summary.summary.warningActions}
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="bg-white overflow-hidden shadow rounded-lg">
|
||||
<div className="p-5">
|
||||
<div className="flex items-center">
|
||||
<div className="w-0 flex-1">
|
||||
<dl>
|
||||
<dt className="text-sm font-medium text-gray-500 truncate">
|
||||
{t('management.critical') || 'Critical'}
|
||||
</dt>
|
||||
<dd className="text-lg font-medium text-red-800">
|
||||
{summary.summary.criticalActions}
|
||||
</dd>
|
||||
</dl>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
||||
{/* Filters */}
|
||||
<div className="bg-white shadow rounded-lg p-6">
|
||||
<h3 className="text-lg font-medium text-gray-900 mb-4">
|
||||
{t('common.filters') || 'Filters'}
|
||||
</h3>
|
||||
|
||||
<div className="grid grid-cols-1 md:grid-cols-4 gap-4">
|
||||
{/* Search */}
|
||||
<div>
|
||||
<label className="block text-sm font-medium text-gray-700">
|
||||
{t('common.search') || 'Search'}
|
||||
</label>
|
||||
<input
|
||||
type="text"
|
||||
value={filters.search}
|
||||
onChange={(e) => handleFilterChange('search', e.target.value)}
|
||||
placeholder={t('management.searchPlaceholder') || 'Search logs...'}
|
||||
className="mt-1 block w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500"
|
||||
/>
|
||||
</div>
|
||||
|
||||
{/* Level */}
|
||||
<div>
|
||||
<label className="block text-sm font-medium text-gray-700">
|
||||
{t('management.level') || 'Level'}
|
||||
</label>
|
||||
<select
|
||||
value={filters.level}
|
||||
onChange={(e) => handleFilterChange('level', e.target.value)}
|
||||
className="mt-1 block w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500"
|
||||
>
|
||||
<option value="">{t('common.all') || 'All'}</option>
|
||||
<option value="INFO">INFO</option>
|
||||
<option value="WARNING">WARNING</option>
|
||||
<option value="ERROR">ERROR</option>
|
||||
<option value="CRITICAL">CRITICAL</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
{/* Action */}
|
||||
<div>
|
||||
<label className="block text-sm font-medium text-gray-700">
|
||||
{t('management.action') || 'Action'}
|
||||
</label>
|
||||
<select
|
||||
value={filters.action}
|
||||
onChange={(e) => handleFilterChange('action', e.target.value)}
|
||||
className="mt-1 block w-full border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500"
|
||||
>
|
||||
<option value="">{t('common.all') || 'All'}</option>
|
||||
{availableActions.map(action => (
|
||||
<option key={action} value={action}>{action}</option>
|
||||
))}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
{/* Date Range */}
|
||||
<div>
|
||||
<label className="block text-sm font-medium text-gray-700">
|
||||
{t('management.dateRange') || 'Date Range'}
|
||||
</label>
|
||||
<div className="flex space-x-2">
|
||||
<input
|
||||
type="date"
|
||||
value={filters.startDate}
|
||||
onChange={(e) => handleFilterChange('startDate', e.target.value)}
|
||||
className="flex-1 border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500"
|
||||
/>
|
||||
<input
|
||||
type="date"
|
||||
value={filters.endDate}
|
||||
onChange={(e) => handleFilterChange('endDate', e.target.value)}
|
||||
className="flex-1 border-gray-300 rounded-md shadow-sm focus:ring-blue-500 focus:border-blue-500"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="mt-4 flex justify-between">
|
||||
<button
|
||||
onClick={clearFilters}
|
||||
className="text-sm text-gray-600 hover:text-gray-900"
|
||||
>
|
||||
{t('common.clearFilters') || 'Clear Filters'}
|
||||
</button>
|
||||
<span className="text-sm text-gray-500">
|
||||
{pagination.totalCount} {t('management.totalEntries') || 'total entries'}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/* Audit Logs Table */}
|
||||
<div className="bg-white shadow overflow-hidden sm:rounded-md">
|
||||
{loading ? (
|
||||
<div className="p-6 text-center">
|
||||
<div className="inline-block animate-spin rounded-full h-6 w-6 border-b-2 border-blue-600"></div>
|
||||
<span className="ml-2">{t('common.loading') || 'Loading...'}</span>
|
||||
</div>
|
||||
) : error ? (
|
||||
<div className="p-6 text-center text-red-600">
|
||||
{t('common.error') || 'Error'}: {error}
|
||||
</div>
|
||||
) : auditLogs.length === 0 ? (
|
||||
<div className="p-6 text-center text-gray-500">
|
||||
{t('management.noAuditLogs') || 'No audit logs found'}
|
||||
</div>
|
||||
) : (
|
||||
<div className="overflow-x-auto">
|
||||
<table className="min-w-full divide-y divide-gray-200">
|
||||
<thead className="bg-gray-50">
|
||||
<tr>
|
||||
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
{t('management.timestamp') || 'Timestamp'}
|
||||
</th>
|
||||
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
{t('management.level') || 'Level'}
|
||||
</th>
|
||||
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
{t('management.action') || 'Action'}
|
||||
</th>
|
||||
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
{t('management.user') || 'User'}
|
||||
</th>
|
||||
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
{t('management.tenant') || 'Tenant'}
|
||||
</th>
|
||||
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
{t('management.message') || 'Message'}
|
||||
</th>
|
||||
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
{t('management.success') || 'Success'}
|
||||
</th>
|
||||
<th className="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">
|
||||
{t('management.ipAddress') || 'IP Address'}
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody className="bg-white divide-y divide-gray-200">
|
||||
{auditLogs.map((log) => (
|
||||
<tr key={log.id} className="hover:bg-gray-50">
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
|
||||
{formatTimestamp(log.timestamp)}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap">
|
||||
<span className={`inline-flex px-2 py-1 text-xs font-semibold rounded-full ${getLevelBadgeClass(log.level)}`}>
|
||||
{log.level}
|
||||
</span>
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
|
||||
{log.action}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
|
||||
{log.username || '-'}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
|
||||
{log.tenant_slug || '-'}
|
||||
</td>
|
||||
<td className="px-6 py-4 text-sm text-gray-900 max-w-xs truncate">
|
||||
<span title={log.message}>{log.message}</span>
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-center">
|
||||
{getSuccessIndicator(log.success)}
|
||||
</td>
|
||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-900">
|
||||
{log.ip_address || '-'}
|
||||
</td>
|
||||
</tr>
|
||||
))}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
||||
{/* Pagination */}
|
||||
{pagination.totalPages > 1 && (
|
||||
<div className="bg-white px-4 py-3 flex items-center justify-between border-t border-gray-200 sm:px-6">
|
||||
<div className="flex-1 flex justify-between sm:hidden">
|
||||
<button
|
||||
onClick={() => handlePageChange(pagination.currentPage - 1)}
|
||||
disabled={!pagination.hasPrevPage}
|
||||
className="relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 disabled:opacity-50"
|
||||
>
|
||||
{t('common.previous') || 'Previous'}
|
||||
</button>
|
||||
<button
|
||||
onClick={() => handlePageChange(pagination.currentPage + 1)}
|
||||
disabled={!pagination.hasNextPage}
|
||||
className="ml-3 relative inline-flex items-center px-4 py-2 border border-gray-300 text-sm font-medium rounded-md text-gray-700 bg-white hover:bg-gray-50 disabled:opacity-50"
|
||||
>
|
||||
{t('common.next') || 'Next'}
|
||||
</button>
|
||||
</div>
|
||||
<div className="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between">
|
||||
<div>
|
||||
<p className="text-sm text-gray-700">
|
||||
{t('common.showing') || 'Showing'}{' '}
|
||||
<span className="font-medium">{((pagination.currentPage - 1) * pagination.limit) + 1}</span>
|
||||
{' '}{t('common.to') || 'to'}{' '}
|
||||
<span className="font-medium">
|
||||
{Math.min(pagination.currentPage * pagination.limit, pagination.totalCount)}
|
||||
</span>
|
||||
{' '}{t('common.of') || 'of'}{' '}
|
||||
<span className="font-medium">{pagination.totalCount}</span>
|
||||
{' '}{t('common.results') || 'results'}
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<nav className="relative z-0 inline-flex rounded-md shadow-sm -space-x-px">
|
||||
<button
|
||||
onClick={() => handlePageChange(pagination.currentPage - 1)}
|
||||
disabled={!pagination.hasPrevPage}
|
||||
className="relative inline-flex items-center px-2 py-2 rounded-l-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50 disabled:opacity-50"
|
||||
>
|
||||
<span className="sr-only">{t('common.previous') || 'Previous'}</span>
|
||||
‹
|
||||
</button>
|
||||
|
||||
{/* Page numbers */}
|
||||
{Array.from({ length: Math.min(5, pagination.totalPages) }, (_, i) => {
|
||||
const page = i + Math.max(1, pagination.currentPage - 2);
|
||||
if (page > pagination.totalPages) return null;
|
||||
|
||||
return (
|
||||
<button
|
||||
key={page}
|
||||
onClick={() => handlePageChange(page)}
|
||||
className={`relative inline-flex items-center px-4 py-2 border text-sm font-medium ${
|
||||
page === pagination.currentPage
|
||||
? 'z-10 bg-blue-50 border-blue-500 text-blue-600'
|
||||
: 'bg-white border-gray-300 text-gray-500 hover:bg-gray-50'
|
||||
}`}
|
||||
>
|
||||
{page}
|
||||
</button>
|
||||
);
|
||||
})}
|
||||
|
||||
<button
|
||||
onClick={() => handlePageChange(pagination.currentPage + 1)}
|
||||
disabled={!pagination.hasNextPage}
|
||||
className="relative inline-flex items-center px-2 py-2 rounded-r-md border border-gray-300 bg-white text-sm font-medium text-gray-500 hover:bg-gray-50 disabled:opacity-50"
|
||||
>
|
||||
<span className="sr-only">{t('common.next') || 'Next'}</span>
|
||||
›
|
||||
</button>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default AuditLogs;
|
||||
@@ -448,6 +448,38 @@ const translations = {
|
||||
type: 'Type',
|
||||
name: 'Name',
|
||||
description: 'Description',
|
||||
filters: 'Filters',
|
||||
clearFilters: 'Clear Filters',
|
||||
refresh: 'Refresh',
|
||||
search: 'Search',
|
||||
loading: 'Loading...',
|
||||
error: 'Error',
|
||||
showing: 'Showing',
|
||||
to: 'to',
|
||||
results: 'results'
|
||||
},
|
||||
management: {
|
||||
auditLogs: 'Security Audit Logs',
|
||||
totalLogs: 'Total Logs',
|
||||
successfulActions: 'Successful Actions',
|
||||
failedActions: 'Failed Actions',
|
||||
warnings: 'Warnings',
|
||||
critical: 'Critical Events',
|
||||
level: 'Level',
|
||||
action: 'Action',
|
||||
user: 'User',
|
||||
tenant: 'Tenant',
|
||||
message: 'Message',
|
||||
success: 'Success',
|
||||
ipAddress: 'IP Address',
|
||||
timestamp: 'Timestamp',
|
||||
dateRange: 'Date Range',
|
||||
searchPlaceholder: 'Search logs, users, or tenants...',
|
||||
noAuditLogs: 'No audit logs found',
|
||||
totalEntries: 'total entries',
|
||||
logoManagement: 'Logo Management Events',
|
||||
securityEvents: 'Security Events',
|
||||
auditTrail: 'Audit Trail',
|
||||
actions: 'Actions'
|
||||
}
|
||||
},
|
||||
@@ -867,6 +899,69 @@ const translations = {
|
||||
delete: 'Ta bort',
|
||||
edit: 'Redigera',
|
||||
view: 'Visa',
|
||||
add: 'Lägg till',
|
||||
update: 'Uppdatera',
|
||||
create: 'Skapa',
|
||||
remove: 'Ta bort',
|
||||
close: 'Stäng',
|
||||
open: 'Öppna',
|
||||
back: 'Tillbaka',
|
||||
continue: 'Fortsätt',
|
||||
submit: 'Skicka',
|
||||
confirm: 'Bekräfta',
|
||||
yes: 'Ja',
|
||||
no: 'Nej',
|
||||
ok: 'OK',
|
||||
apply: 'Tillämpa',
|
||||
reset: 'Återställ',
|
||||
clear: 'Rensa',
|
||||
all: 'Alla',
|
||||
none: 'Ingen',
|
||||
selected: 'Vald',
|
||||
total: 'Totalt',
|
||||
page: 'Sida',
|
||||
of: 'av',
|
||||
previous: 'Föregående',
|
||||
next: 'Nästa',
|
||||
first: 'Första',
|
||||
last: 'Sista',
|
||||
date: 'Datum',
|
||||
time: 'Tid',
|
||||
status: 'Status',
|
||||
type: 'Typ',
|
||||
name: 'Namn',
|
||||
description: 'Beskrivning',
|
||||
filters: 'Filter',
|
||||
clearFilters: 'Rensa filter',
|
||||
refresh: 'Uppdatera',
|
||||
search: 'Sök',
|
||||
showing: 'Visar',
|
||||
to: 'till',
|
||||
results: 'resultat'
|
||||
},
|
||||
management: {
|
||||
auditLogs: 'Säkerhetsgranskningsloggar',
|
||||
totalLogs: 'Totala loggar',
|
||||
successfulActions: 'Lyckade åtgärder',
|
||||
failedActions: 'Misslyckade åtgärder',
|
||||
warnings: 'Varningar',
|
||||
critical: 'Kritiska händelser',
|
||||
level: 'Nivå',
|
||||
action: 'Åtgärd',
|
||||
user: 'Användare',
|
||||
tenant: 'Klient',
|
||||
message: 'Meddelande',
|
||||
success: 'Framgång',
|
||||
ipAddress: 'IP-adress',
|
||||
timestamp: 'Tidsstämpel',
|
||||
dateRange: 'Datumintervall',
|
||||
searchPlaceholder: 'Sök loggar, användare eller klienter...',
|
||||
noAuditLogs: 'Inga granskningsloggar hittades',
|
||||
totalEntries: 'totala poster',
|
||||
logoManagement: 'Logotyphanteringshändelser',
|
||||
securityEvents: 'Säkerhetshändelser',
|
||||
auditTrail: 'Granskningsspår',
|
||||
view: 'Visa',
|
||||
close: 'Stäng',
|
||||
refresh: 'Uppdatera',
|
||||
search: 'Sök',
|
||||
|
||||
Reference in New Issue
Block a user