We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b812a60 + 16132f4 commit 3529edcCopy full SHA for 3529edc
src/api/messages.js
@@ -15,7 +15,7 @@ export function getTopics(criteria) {
15
params.filter = filterStr.join('&')
16
}
17
18
- return axios.get(`${apiBaseUrl}/topics/list`, { params })
+ return axios.get(`${apiBaseUrl}/topics/list/db`, { params })
19
.then( resp => {
20
return {
21
totalCount: _.get(resp.data, 'result.metadata.totalCount', 0),
@@ -25,7 +25,7 @@ export function getTopics(criteria) {
25
26
27
export function getTopic(topicId) {
28
- return axios.get(`${apiBaseUrl}/topics/${topicId}/read`)
+ return axios.get(`${apiBaseUrl}/topics/${topicId}/read/db`)
29
30
31
0 commit comments