- Added requestReview method to facilitate task review requests, integrating with kanban and messaging systems. - Updated taskStore to manage review states, ensuring compatibility with kanban columns. - Enhanced message handling by introducing appendSentMessage for better tracking of sent messages. - Improved task management by normalizing review states and integrating them into task creation and retrieval processes. - Updated tests to cover new review and messaging features, ensuring robust functionality across components.
14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
const messageStore = require('./messageStore.js');
|
|
|
|
function sendMessage(context, flags) {
|
|
return messageStore.sendInboxMessage(context.paths, flags);
|
|
}
|
|
|
|
function appendSentMessage(context, flags) {
|
|
return messageStore.appendSentMessage(context.paths, flags);
|
|
}
|
|
|
|
module.exports = {
|
|
appendSentMessage,
|
|
sendMessage,
|
|
};
|