mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-11 23:59:56 +08:00
28 lines
885 B
JavaScript
28 lines
885 B
JavaScript
module.exports = {
|
|
'cqwu.net': {
|
|
_name: '重庆文理学院',
|
|
www: [
|
|
{
|
|
title: '通知',
|
|
docs: 'https://docs.rsshub.app/university.html#chong-qing-wen-li-xue-yuan',
|
|
source: '/:type',
|
|
target: (params) => {
|
|
if (params.type === 'channel_7721.html') {
|
|
return '/cqwu/news/notify';
|
|
}
|
|
},
|
|
},
|
|
{
|
|
title: '学术活动',
|
|
docs: 'https://docs.rsshub.app/university.html#chong-qing-wen-li-xue-yuan',
|
|
source: '/:type',
|
|
target: (params) => {
|
|
if (params.type === 'channel_7722.html') {
|
|
return '/cqwu/news/academiceve';
|
|
}
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|