30 lines
861 B
TypeScript
30 lines
861 B
TypeScript
import { TargetChannel } from "@/lib/types/api";
|
|
|
|
// ============================================================================
|
|
// Mock Target Channels Data
|
|
// ============================================================================
|
|
|
|
export const mockTargetChannels: TargetChannel[] = [
|
|
{
|
|
id: "550e8400-e29b-41d4-a716-446655440010",
|
|
telegram_id: -1001234567890,
|
|
title: "Мой Главный Канал",
|
|
username: "my_main_channel",
|
|
is_active: true,
|
|
},
|
|
{
|
|
id: "550e8400-e29b-41d4-a716-446655440011",
|
|
telegram_id: -1009876543210,
|
|
title: "Тестовый Канал",
|
|
username: "test_channel_promo",
|
|
is_active: true,
|
|
},
|
|
{
|
|
id: "550e8400-e29b-41d4-a716-446655440012",
|
|
telegram_id: -1005555555555,
|
|
title: "Новости и Обновления",
|
|
username: null,
|
|
is_active: false,
|
|
},
|
|
];
|