@@ -167,7 +167,7 @@ export const usersApi = {
167
167
}
168
168
169
169
export const messagesApi = {
170
- create : data => $http ( '/api/messages' , { method : 'POST' , data } ) ,
170
+ create : data => $http ( '/api/messages' , { method : 'POST' , data } , true ) ,
171
171
page : params => $http ( '/api/messages' , { params } ) ,
172
172
pageIgnored : params => $http ( '/api/messages/ignored' , { params } ) ,
173
173
ignore : data => $http ( '/api/messages/ignore' , { method : 'POST' , data } ) ,
@@ -180,7 +180,7 @@ export const messagesApi = {
180
180
updateMessageDraft : draft => $http ( '/api/messages/draft' , { method : 'PUT' , data : { draft } } ) ,
181
181
convos : {
182
182
page : ( id , params ) => $http ( `/api/conversations/${ id } ` , { params } ) ,
183
- create : data => $http ( '/api/conversations' , { method : 'POST' , data } ) ,
183
+ create : data => $http ( '/api/conversations' , { method : 'POST' , data } , true ) ,
184
184
delete : id => $http ( `/api/conversations/${ id } ` , { method : 'DELETE' } )
185
185
}
186
186
}
0 commit comments