turkmentv_front/routes.ts

54 lines
2.2 KiB
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
export default {
newsItem: (id: string) => `/posts/${id}`,
pageItem: (id: string) => `/pages/${id}`,
channelItem: (channel: number) =>
`/timetable?on_channel=1&channel=${channel}`,
2024-08-19 12:44:56 +00:00
smallSwiper: (type: string) => `/slider?type=${type}`,
videos: (search: string) => `/materials${search}`,
video: (video_id: number) => `/material/${video_id}`,
plans: (property_id: string) => `/mahabat/${property_id}/bukjalar`,
// Quiz ==============================================================
getQuizQuestions: `/quiz/active`,
getQuiz: (quiz_id: string) => `/quiz/${quiz_id}`,
2025-03-28 12:05:40 +00:00
getQuizUUID: (quiz_id: string) => `/quiz/uuid/${quiz_id}`,
2024-08-19 12:44:56 +00:00
getQuizQuestionsWinners: (id: number) => `/quiz/${id}/winners`,
2025-03-07 10:18:56 +00:00
getQuizNetijeWinners: (id: string) => `/quiz/${id}/netije`,
2024-08-19 12:44:56 +00:00
getQuizQuestionHistory: (id: number) => `/question/${id}/history`,
// ===================================================================
// Votes ================================================================
allVotes: "/voting/show_on_site",
2024-08-19 12:44:56 +00:00
vote: (vote_id: string) => `/voting/${vote_id}`,
2025-03-28 12:05:40 +00:00
voteUUID: (vote_id: string) => `/voting/uuid/${vote_id}`,
2024-08-19 12:44:56 +00:00
// ======================================================================
2024-12-07 11:49:50 +00:00
// Lottery ================================================================
lotteryActive: "/lottery/active",
tossId: (type: string, id: string) => `/${type}/${id}`,
2024-12-07 11:49:50 +00:00
// ======================================================================
addPost: "/mahabat/order",
news: "/pagination/new/posts",
lastVideos: "/materials?per_page=30",
categories: "/categories",
channels: "/channels",
banner: "/mahabatlar",
2024-08-19 12:44:56 +00:00
// home: '/mahabatlar?type=home',
home: "/slider?type=big",
marquee: "/timetable",
homeSmallSlider_1: "/slider?type=small",
homeSmallSlider_2: "/slider?type=small2",
homeSmallSlider_3: "/slider?type=hazyna",
homeSmallSlider_4: "/slider?type=mahabat",
2024-08-19 12:44:56 +00:00
properties: "/mahabat/property-types",
2024-08-19 12:44:56 +00:00
addViews: (video_id: string) => `material/${video_id}/views/increment`,
// Sms ========================================================================
myTvAdmins: "/my-tv-admins",
2024-08-19 12:44:56 +00:00
messagesByTvAdmin: (id: number) => `/messages-by-tv-admin/${id}`,
};