major update
This commit is contained in:
@@ -138,6 +138,26 @@ class SettingGateway
|
||||
return $this->settingService->setUserInactivityDeleteDays($days, $description);
|
||||
}
|
||||
|
||||
public function isSystemAuditEnabled(): bool
|
||||
{
|
||||
return $this->settingService->isSystemAuditEnabled();
|
||||
}
|
||||
|
||||
public function setSystemAuditEnabled(bool $enabled, ?string $description = null): bool
|
||||
{
|
||||
return $this->settingService->setSystemAuditEnabled($enabled, $description);
|
||||
}
|
||||
|
||||
public function getSystemAuditRetentionDays(): int
|
||||
{
|
||||
return $this->settingService->getSystemAuditRetentionDays();
|
||||
}
|
||||
|
||||
public function setSystemAuditRetentionDays(?int $days, ?string $description = null): bool
|
||||
{
|
||||
return $this->settingService->setSystemAuditRetentionDays($days, $description);
|
||||
}
|
||||
|
||||
public function getApiCorsAllowedOrigins(): array
|
||||
{
|
||||
return $this->settingService->getApiCorsAllowedOrigins();
|
||||
|
||||
Reference in New Issue
Block a user