-
Notifications
You must be signed in to change notification settings - Fork 470
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Announcements): correcting query that retrieves announcements fr…
…om prod and fixing postman Ref:s#25736 (#27480) * #25736 the postman is set to create the CT taking into account the announcementDate as publish date * #25736 megre latest from master * #25736 allowing time for publishing to take effect * #25736 debugging postman failure * #25736 correcting announcements remote query * #25736 code clean up * #25736 updating postman test * #25736 url query fix * #25736 adjusting test * #25736 imrproved IT * #25736 log should be debug
- Loading branch information
1 parent
c7df3b2
commit ace5e2f
Showing
12 changed files
with
254 additions
and
195 deletions.
There are no files selected for viewing
205 changes: 148 additions & 57 deletions
205
dotCMS/src/curl-test/Announcements.postman_collection.json
Large diffs are not rendered by default.
Oops, something went wrong.
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
5 changes: 2 additions & 3 deletions
5
dotCMS/src/main/java/com/dotcms/system/announcements/AnnouncementsCache.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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
package com.dotcms.system.announcements; | ||
|
||
import com.dotmarketing.portlets.languagesmanager.model.Language; | ||
import java.util.List; | ||
|
||
public interface AnnouncementsCache { | ||
|
||
void clearCache(); | ||
|
||
void put(Language language, List<Announcement> announcements); | ||
void put(List<Announcement> announcements); | ||
|
||
List<Announcement> get(Language language); | ||
List<Announcement> get(); | ||
|
||
} |
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
Oops, something went wrong.