Files
oneuptime/Common/Server/Services/AIAgentOwnerTeamService.ts
Nawaz Dhandala 1da6ec7a16 feat: Add AI Agent ownership management features
- Introduced AIAgentOwnerTeam and AIAgentOwnerUser models to manage team and user ownership of AI Agents.
- Created AIAgent API to fetch global AI agents.
- Added Handlebars template for notifications when a user is added as an AI agent owner.
- Implemented services for AIAgentOwnerTeam and AIAgentOwnerUser for database interactions.
- Updated database models to include necessary access control and metadata for new entities.
2025-12-24 13:56:33 +00:00

11 lines
250 B
TypeScript

import DatabaseService from "./DatabaseService";
import Model from "../../Models/DatabaseModels/AIAgentOwnerTeam";
export class Service extends DatabaseService<Model> {
public constructor() {
super(Model);
}
}
export default new Service();