feat(settings): add get_schema_name() to SiloSettings, remove hardcoded defaults #15
Reference in New Issue
Block a user
Delete Branch "feat/configurable-schema-name"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Add
get_schema_name()toSiloSettingsbase class with a default return value of"kindred-rd"(non-abstract so existing consumers are unaffected).Update
get_schema(),get_schema_form(), andget_property_schema()to acceptname=""and fall back toself._settings.get_schema_name()instead of hardcoding"kindred-rd".Add optional
categoryquery parameter toget_property_schema()so callers can filter by category without constructing raw URLs.Part of kindred/silo-mod#28.