Development

This commit is contained in:
Matthew Grotke 2026-05-24 03:02:10 -04:00
parent e289583c4b
commit efdc2c63f2
4 changed files with 114 additions and 7 deletions

View file

@ -23,6 +23,7 @@ from action_save_preferences import bp as action_save_preferences_bp
from action_change_password import bp as action_change_password_bp
from action_clear_ddns_log import bp as action_clear_ddns_log_bp
from action_apply_ddns_providers import bp as action_apply_ddns_providers_bp
from action_apply_ddns_ip_check import bp as action_apply_ddns_ip_check_bp
from api_apply_status import bp as api_apply_status_bp
app = Flask(__name__)
@ -50,6 +51,7 @@ app.register_blueprint(action_save_preferences_bp)
app.register_blueprint(action_change_password_bp)
app.register_blueprint(action_clear_ddns_log_bp)
app.register_blueprint(action_apply_ddns_providers_bp)
app.register_blueprint(action_apply_ddns_ip_check_bp)
app.register_blueprint(api_apply_status_bp)
def _seed_initial_account():