Development

This commit is contained in:
Matthew Grotke 2026-06-06 14:55:29 -04:00
parent 33ec9e7f1c
commit 0cec7d69c9
12 changed files with 124 additions and 92 deletions

View file

@ -8,11 +8,11 @@ from flask import Blueprint, request, redirect, flash, send_file, abort, jsonify
from auth import require_level
from config_utils import CONFIGS_DIR, load_config, record_group, diff_fields
import mod_validation as validate
import license
import settings as settings
_PAGE = Path(__file__).parent.name
PRO_LICENSE = license.is_pro()
PRO_LICENSE = settings.is_pro()
bp = Blueprint(_PAGE, __name__)