02-24-2013 03:11 AM
Does a user in a system, but not a member of SITE "ABC", will he be getting notification of what is happening at site "ABC"
Does the admin has the right to decide who should not get and the time interval of the notification
Is there any GUI for managing the same
How does the admin decide who all should get the notification, and who all should not get the notification
02-25-2013 01:33 AM
"C:\Alfresco42d\tomcat\webapps\alfresco\WEB-INF\classes\alfresco\subsystems\ActivitiesFeed\default\activities-jobs.properties"
and look at the http://localhost:8081/share/page/console/admin-console/activities
http://localhost:8081/share/page/user/<userId>/user-notifications
02-25-2013 02:14 AM
02-25-2013 09:13 AM
02-25-2013 12:42 PM
02-26-2013 10:14 AM
Remove the user.id and use userId.
var userId = page.url.templateArgs["userid"]
var result = remote.call("/api/people/" + encodeURIComponent(userId));
02-27-2013 05:13 AM
jsonUtils.toJSONString(
{
"username": user.id, // => change user.id to page.url.templateArgs["userid"]?
"properties":
{
"cm:emailFeedDisabled": emailFeedDisabled
}
}),
02-27-2013 05:22 AM
02-28-2013 05:48 AM
02-28-2013 10:21 PM
model.userId = page.url.templateArgs["userid"];
<span><input type="hidden" id="user-id" value="${userId}"></span>
var userId = "";
if (json.has("user-id"))
{
userId= json.get("user-id");
}
else
userId = user.Id;
…………….
…………….
jsonUtils.toJSONString(
{
"username": userId,
"properties":
{
"cm:emailFeedDisabled": emailFeedDisabled
}
}),
"application/json");
…………………
…………………
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.