Compare commits

...

2 commits

Author SHA1 Message Date
41df059c45 Local addresses. 2025-04-30 03:16:02 +02:00
50a2bc31f9 TODO: delegation. 2025-04-30 03:15:44 +02:00
2 changed files with 8 additions and 6 deletions

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.
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:
@ -17,10 +18,11 @@ Minor modifications:
# Features
About zone records:
Delegation:
- allow '@' in record names (replaced by the fqdn, the "root" domain, such as "example.netlib.re.")
- enable to change NS records, but after a accepting the consequences
- new RR record: the "delegation record", effectively removing all other RRs
=> requires 2 nameservers
- also enable to change NS records (but after a accepting the consequences)?
About the admin interface:

View file

@ -110,8 +110,8 @@ foreign import unsafeSetInnerHTML :: HTMLElement -> RawHTML -> Effect Unit
-- | Current limit is 30 minutes (`max_keepalive` = 60, 60 * 30 seconds = 30 minutes).
max_keepalive = 60 :: Int
wsURLauthd = "wss://www.netlib.re/ws/authd" :: String
wsURLdnsmanagerd = "wss://www.netlib.re/ws/dnsmanagerd" :: String
wsURLauthd = "ws://localhost:8080" :: String
wsURLdnsmanagerd = "ws://localhost:8081" :: String
data Action
= Initialize