fix
Some checks are pending
BlockStorage/repertory_mac/pipeline/head Build queued...
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
2025-09-08 07:58:25 -05:00
parent 5597c7b802
commit cf9011c1ce

View File

@@ -205,6 +205,15 @@ void mgmt_app_config::save() const {
} }
} }
void mgmt_app_config::set_animations(bool animations) {
if (animations_ == animations) {
return;
}
animations_ = animations;
save();
}
void mgmt_app_config::set_api_password(std::string_view api_password) { void mgmt_app_config::set_api_password(std::string_view api_password) {
if (api_password_ == std::string{api_password}) { if (api_password_ == std::string{api_password}) {
return; return;