diff --git a/src/components/ImportPage.vue b/src/components/ImportPage.vue index fefabf39..ecde57b7 100644 --- a/src/components/ImportPage.vue +++ b/src/components/ImportPage.vue @@ -7,6 +7,9 @@
Selected Subscriptions: {{ selectedSubscriptions }}
+
+ Override: +
{ + { + method: "POST", + headers: { + Authorization: this.getAuthToken(), + }, + body: JSON.stringify(this.subscriptions), + }, + ).then(json => { if (json.message === "ok") window.location = "/feed"; }); },