stash
This commit is contained in:
parent
a4c1a6fc95
commit
22740aadf5
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ const store = createStore({
|
|||
}
|
||||
},
|
||||
async createMessageTemplate({commit, state}, template_name) {
|
||||
const {data, success} = await http.post('/2/message_templates/', {name: template_name}, state.user.token);
|
||||
const {data, success} = await http.post('/2/message_templates/', {name: template_name, message: ''}, state.user.token);
|
||||
const {data: newTemplates, success: newSuccess} = await http.get('/2/message_templates/', state.user.token);
|
||||
if (data && success) {
|
||||
commit('setMessageTemplates', data);
|
||||
|
|
Loading…
Reference in a new issue