TODO: delegation.

This commit is contained in:
Philippe Pittoli 2025-04-30 03:15:44 +02:00
parent 4a40342850
commit 50a2bc31f9

10
TODO.md
View file

@ -8,7 +8,8 @@ Modules should have their own specific API.
When a module currently requires to send messages, the API should reflect semantics instead of providing the module a way to just carry raw messages. When a module currently requires to send messages, the API should reflect semantics instead of providing the module a way to just carry raw messages.
For example, there are currently modules able to send messages (with a very simple `MessageToSend message` API), but instead of dealing with raw messages that need to be built inside the module, the API should be more semantic such as `ChangePassword new-password`. For example, there are currently modules able to send messages (with a very simple `MessageToSend message` API), but instead of dealing with raw messages that need to be built inside the module, the API should be more semantic such as `ChangePassword new-password`.
Once modules will have specific APIs, the entire state of the application could be moved into a single module (or *component*) so every state modification can be handled in a single place. Once modules will have specific APIs, the entire state of the application could be moved into a single module (or *component*).
Thus, every state modification can be handled in a single place.
Minor modifications: Minor modifications:
@ -17,10 +18,11 @@ Minor modifications:
# Features # Features
About zone records: Delegation:
- allow '@' in record names (replaced by the fqdn, the "root" domain, such as "example.netlib.re.") - new RR record: the "delegation record", effectively removing all other RRs
- enable to change NS records, but after a accepting the consequences => requires 2 nameservers
- also enable to change NS records (but after a accepting the consequences)?
About the admin interface: About the admin interface: