Этот коммит содержится в:
Gabin Aureche
2017-03-13 13:25:08 +01:00
коммит произвёл George Goldberg
родитель 482a0fb5fc
Коммит fe38d6d5bb
38 изменённых файлов: 885 добавлений и 52 удалений

Просмотреть файл

@@ -1802,6 +1802,15 @@ export default class Client {
this.trackEvent('api', 'api_posts_get_flagged', {team_id: this.getTeamId()});
}
getPinnedPosts(channelId, success, error) {
request.
get(`${this.getChannelNeededRoute(channelId)}/pinned`).
set(this.defaultHeaders).
type('application/json').
accept('application/json').
end(this.handleResponse.bind(this, 'getPinnedPosts', success, error));
}
getFileInfosForPost(channelId, postId, success, error) {
request.
get(`${this.getChannelNeededRoute(channelId)}/posts/${postId}/get_file_infos`).
@@ -2187,6 +2196,24 @@ export default class Client {
});
}
pinPost(channelId, postId, success, error) {
request.
post(`${this.getChannelNeededRoute(channelId)}/posts/${postId}/pin`).
set(this.defaultHeaders).
accept('application/json').
send().
end(this.handleResponse.bind(this, 'pinPost', success, error));
}
unpinPost(channelId, postId, success, error) {
request.
post(`${this.getChannelNeededRoute(channelId)}/posts/${postId}/unpin`).
set(this.defaultHeaders).
accept('application/json').
send().
end(this.handleResponse.bind(this, 'unpinPost', success, error));
}
saveReaction(channelId, reaction, success, error) {
request.
post(`${this.getChannelNeededRoute(channelId)}/posts/${reaction.post_id}/reactions/save`).