2018-10-21 03:18:58 +00:00
|
|
|
const { doc, type, defaultValue, required, requires } = require('../common/utils').descriptors;
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
[type]: 'object',
|
2018-11-24 07:26:51 +00:00
|
|
|
[doc]: 'Share plugin settings\nhttp://ppoffice.github.io/hexo-theme-icarus/categories/Configuration/Share-Plugins',
|
2018-10-21 03:18:58 +00:00
|
|
|
type: {
|
|
|
|
[type]: 'string',
|
|
|
|
[doc]: 'Share plugin name',
|
|
|
|
[defaultValue]: null
|
|
|
|
},
|
|
|
|
install_url: {
|
|
|
|
[type]: 'string',
|
|
|
|
[doc]: 'URL to the share plugin script provided by share plugin service provider',
|
|
|
|
[required]: true,
|
|
|
|
[requires]: share => share.type === 'sharethis' || share.type === 'addthis'
|
|
|
|
}
|
|
|
|
}
|