1
This commit is contained in:
@@ -6,7 +6,7 @@ from sqlalchemy.ext.asyncio import AsyncSession
|
||||
from app.models.desktopConfig import DesktopConfig
|
||||
|
||||
|
||||
async def list_all_as_map(db: AsyncSession) -> dict[str, str]:
|
||||
result = await db.execute(select(DesktopConfig))
|
||||
async def list_all_as_map(db: AsyncSession, oem_id: int = 1) -> dict[str, str]:
|
||||
result = await db.execute(select(DesktopConfig).where(DesktopConfig.oem_id == oem_id))
|
||||
rows = result.scalars().all()
|
||||
return {row.name: row.value for row in rows}
|
||||
|
||||
Reference in New Issue
Block a user