You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear, is it possible to use this solution with Subfolders? This is because my different projects have tasks in different subfolders which are shared with different teams.
I would need (for example) the "Sales" folder as backlog (as this task folder is shared with the sales team) and in that folder I would need every subfolder needed for the Kanban...
I've tried to change the folder in the settings file 'Sales\Folder Name' but this doesn't work.
THANKS
The text was updated successfully, but these errors were encountered:
Hello! I was facing the same problem and did some search to solve it. I could reach the subfolders with a change in the app.js-File:
I changed following code-part:
var getOutlookFolder = function (folderpath, owner) {
if ( folderpath === undefined || folderpath === '' ) {
// if folder path is not defined, return main Tasks folder
var folder = outlookNS.GetDefaultFolder(13).Folders("name of main folder");
} else {
// if folder path is defined
if ( owner === undefined || owner === '' ) {
// if owner is not defined, return defined sub folder of main Tasks folder
var folder = outlookNS.GetDefaultFolder(13).Folders("name of main folder").Folders(folderpath);
} else {
// if owner is defined, try to resolve owner
var recipient = outlookNS.CreateRecipient(owner);
recipient.Resolve;
if ( recipient.Resolved ) {
var folder = outlookNS.GetSharedDefaultFolder(recipient, 13).Folders("name of main folder").Folders(folderpath);
} else {
return null;
}
}
}
return folder;
You could enter "Sales" as the "name of main folder" and the app will search for the subfolders in this main folder.
Dear, is it possible to use this solution with Subfolders? This is because my different projects have tasks in different subfolders which are shared with different teams.
I would need (for example) the "Sales" folder as backlog (as this task folder is shared with the sales team) and in that folder I would need every subfolder needed for the Kanban...
I've tried to change the folder in the settings file 'Sales\Folder Name' but this doesn't work.
THANKS
The text was updated successfully, but these errors were encountered: