Merge branch 'staging' into qr-editor-wordwrap

This commit is contained in:
LenAnderson
2024-03-25 09:05:49 -04:00
38 changed files with 1691 additions and 707 deletions

View File

@ -177,7 +177,7 @@ export class QuickReplySet {
async performSave() {
const response = await fetch('/savequickreply', {
const response = await fetch('/api/quick-replies/save', {
method: 'POST',
headers: getRequestHeaders(),
body: JSON.stringify(this),
@ -191,7 +191,7 @@ export class QuickReplySet {
}
async delete() {
const response = await fetch('/deletequickreply', {
const response = await fetch('/api/quick-replies/delete', {
method: 'POST',
headers: getRequestHeaders(),
body: JSON.stringify(this),