mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-01 09:38:04 +08:00
30 lines
1010 B
JavaScript
30 lines
1010 B
JavaScript
module.exports = {
|
|
'csu.edu.cn': {
|
|
_name: '中南大学',
|
|
career: [
|
|
{
|
|
title: '就业信息网招聘信息',
|
|
docs: 'https://docs.rsshub.app/routes/university#zhong-nan-da-xue',
|
|
source: ['/campus/index/category/1', '/campus', '/'],
|
|
target: '/csu/career',
|
|
},
|
|
],
|
|
cse: [
|
|
{
|
|
title: '计算机学院',
|
|
docs: 'https://docs.rsshub.app/routes/university#zhong-nan-da-xue',
|
|
source: ['/index/:type'],
|
|
target: (params) => `/csu/cse/${params.type.substring(0, 4)}`,
|
|
},
|
|
],
|
|
oa: [
|
|
{
|
|
title: '校长信箱',
|
|
docs: 'https://docs.rsshub.app/routes/university#zhong-nan-da-xue',
|
|
source: ['/mailbox/NoAuth/MailList_Pub'],
|
|
target: (_, url) => `/csu/mail/${new URL(url).searchParams.get('tp')}`,
|
|
},
|
|
],
|
|
},
|
|
};
|