Skip to content

Commit

Permalink
Adding ability to see all playlists
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolvin committed Nov 19, 2024
1 parent 3b06198 commit 28cc461
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion current/all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/analyse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>brightcove.core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ private JSONObject searchPlaylist(SlingHttpServletRequest request) throws JSONEx
LOGGER.error("search_playlists", je);
}
} else {
result = new JSONObject(serviceUtil.getPlaylists(request.getParameter(Constants.QUERY), Integer.parseInt(request.getParameter(Constants.START)), Integer.parseInt(request.getParameter(Constants.LIMIT)), false, false));
result = new JSONObject(serviceUtil.getPlaylists(request.getParameter(Constants.QUERY), Integer.parseInt(request.getParameter(Constants.START)), Integer.parseInt(request.getParameter(Constants.LIMIT)), false, true));
}
return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ public void getPlaylistsForDropdown(final SlingHttpServletRequest request,

serviceUtil = new ServiceUtil(brcAccountId);

outWriter.write(serviceUtil.getPlaylists(request.getParameter(Constants.QUERY), 0, 100, false, false).toString());
outWriter.write(serviceUtil.getPlaylists(request.getParameter(Constants.QUERY), 0, 100, false, true).toString());

} catch (Exception e) {
LOGGER.error("JSONException", e);
Expand Down
2 changes: 1 addition & 1 deletion current/it.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<packaging>pom</packaging>
<version>6.1.7</version>
<version>6.1.8</version>
<description>Brightcove Connector</description>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion current/ui.apps.structure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/ui.apps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/ui.config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/ui.content/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/ui.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.7</version>
<version>6.1.8</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit 28cc461

Please sign in to comment.