1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:48:13 +00:00

ConfigServer: Add method and notification for key removal

This addresses the FIXME of detecting ConfigFile key removal.
This commit is contained in:
faxe1008 2021-11-08 11:34:37 +01:00 committed by Andreas Kling
parent 3ea49259df
commit a4a89a63cb
4 changed files with 50 additions and 18 deletions

View file

@ -3,4 +3,5 @@ endpoint ConfigClient
notify_changed_string_value(String domain, String group, String key, String value) =|
notify_changed_i32_value(String domain, String group, String key, i32 value) =|
notify_changed_bool_value(String domain, String group, String key, bool value) =|
notify_removed_key(String domain, String group, String key) =|
}