Files
Scott Idem 0f8c5dc825 Documentation Archive: Retire static SQL snapshots and legacy logs
- Archived 'aether_sql_tables' and 'legacy_router_logs' to documentation/archive/.
- Static schema documentation is now superseded by the 'ae_obj_info' MCP tool and shared agents_sync metadata.
2026-01-28 12:33:20 -05:00

1.1 KiB

Router: membership_cfg

File: app/routers/membership_cfg.py

Routes found: 1

Functions: 0 —

Classes: 0 —

Routes

  • GET /account/{account_id}/membership/cfg

From-imports

  • app.config

  • app.db_sql

  • app.lib_general

  • app.methods.membership_cfg_methods

  • app.models.response_models

  • app.routers.api_crud

  • fastapi

  • pydantic

  • typing

File preview (first 20 lines)


import datetime
from fastapi import APIRouter, Body, Depends, Header, HTTPException, Path, Query, Response, status
from pydantic import BaseModel, EmailStr, Field
from typing import Dict, List, Optional, Set, Union

from app.lib_general import log, logging
from app.config import settings
from app.db_sql import redis_lookup_id_random

from app.routers.api_crud import delete_obj_template, get_obj_template, get_obj_li_template, patch_obj_template, post_obj_template

from app.methods.membership_cfg_methods import load_membership_cfg_obj

from app.models.response_models import Resp_Body_Base, mk_resp


router = APIRouter()


# ### BEGIN ### API Membership Cfg ### get_account_obj_membership_cfg() ###