Files
RSSHub/lib/v2/csu/radar.js
Jigsaw ae8f0d0962 feat(route): add 中南大学校长信箱 (#10282)
* feat(route): add 中南大学校长信箱

* fix(route): /csu/mail

* feat(radar): 中南大学校长信箱
2022-07-21 03:37:17 -07:00

22 lines
697 B
JavaScript

module.exports = {
'csu.edu.cn': {
_name: '中南大学',
cse: [
{
title: '计算机学院',
docs: 'https://docs.rsshub.app/university.html#zhong-nan-da-xue',
source: ['/index/:type'],
target: (params) => `/csu/cse/${params.type.substring(0, 4)}`,
},
],
oa: [
{
title: '校长信箱',
docs: 'https://docs.rsshub.app/university.html#zhong-nan-da-xue',
source: ['/WebServer/MailBoxNew/MailList_Pub.aspx?tp=:type'],
target: (params) => `/csu/mail/${params.type}`,
},
],
},
};