{% extends "dashboard/base.html" %} {% block dashboard_header %}

Registry Settings

Configure vetting, moderation, and sync settings

{% endblock %} {% block dashboard_content %}
{% for cat, cat_settings in settings_by_category.items() %}

{{ cat.replace('_', ' ') }} Settings

{% for setting in cat_settings %}

{{ setting.key.split('.')[-1].replace('_', ' ').title() }}

{{ setting.description }}

Key: {{ setting.key }} {% if setting.updated_at %} Last updated: {{ setting.updated_at[:10] }} by {{ setting.updated_by or 'system' }} {% endif %}

{% if setting.value_type == 'bool' %} {% elif setting.value_type == 'float' %}
{% elif setting.value_type == 'int' %} {% else %} {% endif %}
{% endfor %}
{% endfor %}

About these settings

  • Vetting: Controls how tools are automatically scored and approved/rejected
  • Similarity: Thresholds for detecting duplicate or similar tools
  • Sync: Fabric pattern synchronization settings
  • Moderation: Rules for tool review workflow
  • Rate Limits: API rate limiting configuration
{% endblock %}