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

69 lines
1.4 KiB
Markdown

# Router: fundraising
**File:** app/routers/fundraising.py
**Routes found:** 1
**Functions:** 0 —
**Classes:** 0 —
## Routes
- **GET** `/account/{account_id}/fundraising/list`
## From-imports
- app.config
- app.db_sql
- app.lib_general
- app.methods.fundraising_methods
- app.models.fundraising_models
- app.models.response_models
- app.routers.api_crud
- fastapi
- pydantic
- typing
## File preview (first 20 lines)
```python
import datetime, time
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, secure_hash_string, verify_secure_hash_string, common_route_params, Common_Route_Params
from app.config import settings
from app.db_sql import sql_insert, sql_update, sql_insert_or_update, sql_select, sql_delete, 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.fundraising_methods import get_fundraising_rec_list, load_fundraising_obj
# from app.methods.fundraising_cfg_methods import load_fundraising_cfg_obj
from app.models.fundraising_models import Fundraising_Base
from app.models.response_models import Resp_Body_Base, mk_resp
router = APIRouter()
```