NIS2 improvements in CP

This commit is contained in:
Pinga 2025-07-02 15:47:50 +03:00
parent a315b2ca13
commit c681d32977
2 changed files with 6 additions and 4 deletions

View file

@ -60,8 +60,8 @@ Namingo is equipped with a comprehensive suite of features to meet the diverse n
- **Database Compatibility**: Fully supports MySQL/MariaDB and offers beta support for PostgreSQL, providing flexibility to match users' technical needs and infrastructure for seamless integration and peak performance.
- **GDPR-Compliant Database Encryption**: Supports comprehensive database encryption to ensure GDPR compliance. For more details, see our [Encryption Guide](docs/encryption.md).
- **GDPR & NIS2 Compliance**: Namingo supports both GDPR and NIS2 requirements, including contact validation and encrypted data storage. For implementation details, see our [Encryption Guide](docs/encryption.md).
- **Automation Scripts**: Ensures the continuous and smooth operation of the registry by performing routine checks and operations. Included scripts for spec 11 abuse monitoring; automated approval of domain transfers; contact and host cleanup; backup processing and upload; domain lifetime status change; generation and upload of RDE deposits, LORDN file, ICANN's monthly reports, invoices; email dispatcher system; statistics generation; TMCH and URS processing; zone generator and signing.
### Optional components
@ -70,6 +70,8 @@ Namingo is equipped with a comprehensive suite of features to meet the diverse n
- [**Domain Registry API**](https://github.com/getnamingo/registry-api) - Provides REST API access to domain availability checks and to the domain droplist.
- [**ntfy.sh Error Notifier**](https://github.com/getnamingo/registry-ntfy) - Checks for new high-severity errors and sends real-time push notifications via ntfy.sh.
## Documentation
Our documentation provides comprehensive guidance on installation, configuration, and initial operation, ensuring you have all the information you need to successfully manage your domain registry.

View file

@ -1270,7 +1270,7 @@ class ContactsController extends Controller
[
'validation' => $data['verify'],
'validation_stamp' => $stamp,
'validation_log' => json_encode($data['v_log']),
'validation_log' => $clid . '|manual|Validated manually',
'upid' => $clid,
'lastupdate' => $stamp
],
@ -1796,7 +1796,7 @@ class ContactsController extends Controller
[
'validation' => $verify,
'validation_stamp' => $stamp,
'validation_log' => json_encode($v_log),
'validation_log' => $_SESSION['auth_user_id'] . '|automatic|Validated via SumSub',
//'upid' => $clid,
'lastupdate' => $stamp
],