chore(auto): task completed - unknown

This commit is contained in:
MythEclipse
2026-06-13 12:24:32 +07:00
parent dcede1d676
commit 615c23f061
8 changed files with 829 additions and 16 deletions
@@ -24,6 +24,16 @@ export class DashboardService {
logger.debug({ userId }, "Fetching user detail");
return dashboardRepository.getUserDetail(userId);
}
async listChannels(query: { limit: number; search?: string; guildId?: string }) {
logger.debug({ query }, "Listing dashboard channels");
return dashboardRepository.listChannels(query);
}
async getChannelDetail(channelId: string) {
logger.debug({ channelId }, "Fetching channel detail");
return dashboardRepository.getChannelDetail(channelId);
}
}
export const dashboardService = new DashboardService();