Вы хотите добавить виджет apostrophe-images
в схему компонента, отвечающего за управление профилями пользователей, в данном случае apostrophe-users
.
В вашем lib/modules/apostrophe-users/index.js
module.exports = {
addFields: [
{
name: 'thumbnail',
type: 'singleton',
widgetType: 'apostrophe-images',
label: 'Profile Picture',
options: {
limit: 1,
aspectRatio: [100, 100]
}
}
]
};
Вы можете изменить limit
и aspectRatio
, чтобы удовлетворить ваши потребности или вообще пропустить их.
Вы можете просмотреть код того, как демонстрационная программа выполняет то, что она делает, просмотрев код
https://github.com/apostrophecms/apostrophe-sandbox/blob/master/lib/modules/apostrophe-users/index.js
https://github.com/apostrophecms/apostrophe-sandbox/