Я настраиваю слабую диалоговую форму, где слабый пользователь может добавить файл в диалоговую форму и затем отправить его.Куда мне нужно добавить поле при создании диалога, чтобы slack показывал пользователю поле загрузки файла?
Вот мой диалог:
const dialogData = {
token: authToken,
trigger_id: slackReqObj.trigger_id,
response_url: slackReqObj.response_url,
dialog: JSON.stringify({
title: 'Upload a file with comments',
callback_id: 'submit-upload',
submit_label: 'Submit',
elements: [
{
label: 'Description',
type: 'textarea',
name: 'description',
optional: false
},
{
label: 'Title',
type: 'text',
name: 'title',
value: 'title ...',
hint: 'Name of the file or title ...'
}
// here i would like to give the field/option to upload/attach a file
]
})
};