forked from sakaiproject/sakai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SAK-30079: Provide global setting for the option Auto forward Message… (
sakaiproject#7652) * SAK-30079: Provide global setting for the option Auto forward Messages in Messages tool * SAK-30079: Resolve Issues Sonar * SAK-30079: Fix minor comments * SAK-30079: Provide global setting for the option Auto forward Message * SAK-30079: Provide global setting for the option Auto forward Message * Resolve Fixes * SAK-30079: Resolved Fixes * Correcting properties
- Loading branch information
1 parent
0909adb
commit 2847ea2
Showing
12 changed files
with
150 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,7 +102,7 @@ private List getPrivateForums() | |
pfm1.setTitle("Messages"); | ||
pfm1.setTopics((getPrivateTopics())); | ||
// pfm1.setType(new TypeImpl()); | ||
pfm1.setAutoForward(Boolean.TRUE); | ||
pfm1.setAutoForward(PrivateForumImpl.AUTO_FOWARD_YES); | ||
pfm1.setAutoForwardEmail("[email protected]"); | ||
pfm1.setPreviewPaneEnabled(Boolean.TRUE); | ||
pfm1.setSortIndex(Integer.valueOf(2)); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...oject/component/app/messageforums/MsgcntrUserNotificationPreferencesRegistrationImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.sakaiproject.component.app.messageforums; | ||
|
||
import org.sakaiproject.util.ResourceLoader; | ||
import org.sakaiproject.util.UserNotificationPreferencesRegistrationImpl; | ||
|
||
public class MsgcntrUserNotificationPreferencesRegistrationImpl extends UserNotificationPreferencesRegistrationImpl { | ||
|
||
public ResourceLoader getResourceLoader(String location) { | ||
return new ResourceLoader(location); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters