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.2 KiB

Router: post

File: app/routers/post.py

Routes found: 6

Functions: 0 —

Classes: 0 —

Routes

  • POST /post

  • PATCH /post/{obj_id}

  • GET /post/list

  • GET /account/{account_id}/post/list

  • GET /post/{obj_id}

  • DELETE /post/{obj_id}

From-imports

  • ..log

  • .api_crud

  • app.config

  • app.db_sql

  • app.lib_general

  • app.methods.post_methods

  • app.models.post_models

  • app.models.response_models

  • fastapi

  • pydantic

  • typing

File preview (first 20 lines)


import datetime
#from datetime import datetime, time, timedelta
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 *
from ..log import *
from app.config import settings
from app.db_sql import *

from .api_crud import delete_obj_template, get_obj_template, get_obj_li_template, patch_obj_template, post_obj_template
from app.methods.post_methods import get_post_rec_list, load_post_obj

from app.models.post_models import Post_Base
from app.models.response_models import *


router = APIRouter()