mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-20 20:34:25 -04:00
Fix JSON API breakage introduced in cf7a77e512
This commit is contained in:
parent
8cb46e5937
commit
612d47908d
1 changed files with 7 additions and 5 deletions
|
@ -317,8 +317,10 @@ public:
|
||||||
std::vector<RsGxsComment>& comments ) = 0;
|
std::vector<RsGxsComment>& comments ) = 0;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get channel messages and comments corresponding to the given message ID list. If the list is empty, nothing is returned. Since
|
* @brief Get channel messages and comments corresponding to the given IDs.
|
||||||
* comments are themselves messages, it is possible to get comments only by only supplying their message IDs.
|
* If the set is empty, nothing is returned.
|
||||||
|
* @note Since comments are internally themselves messages, it is possible
|
||||||
|
* to get comments only by supplying their IDs.
|
||||||
* @jsonapi{development}
|
* @jsonapi{development}
|
||||||
* @param[in] channelId id of the channel of which the content is requested
|
* @param[in] channelId id of the channel of which the content is requested
|
||||||
* @param[in] contentsIds ids of requested contents
|
* @param[in] contentsIds ids of requested contents
|
||||||
|
@ -327,7 +329,7 @@ public:
|
||||||
* @return false if something failed, true otherwhise
|
* @return false if something failed, true otherwhise
|
||||||
*/
|
*/
|
||||||
virtual bool getChannelContent( const RsGxsGroupId& channelId,
|
virtual bool getChannelContent( const RsGxsGroupId& channelId,
|
||||||
const std::set<RsGxsMessageId>& contentIds,
|
const std::set<RsGxsMessageId>& contentsIds,
|
||||||
std::vector<RsGxsChannelPost>& posts,
|
std::vector<RsGxsChannelPost>& posts,
|
||||||
std::vector<RsGxsComment>& comments ) = 0;
|
std::vector<RsGxsComment>& comments ) = 0;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue