summaryrefslogtreecommitdiff
path: root/src/client/pages/my-antennas/create.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/pages/my-antennas/create.vue')
-rw-r--r--src/client/pages/my-antennas/create.vue51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/client/pages/my-antennas/create.vue b/src/client/pages/my-antennas/create.vue
deleted file mode 100644
index d4762411e7..0000000000
--- a/src/client/pages/my-antennas/create.vue
+++ /dev/null
@@ -1,51 +0,0 @@
-<template>
-<div class="geegznzt">
- <XAntenna :antenna="draft" @created="onAntennaCreated"/>
-</div>
-</template>
-
-<script lang="ts">
-import { defineComponent } from 'vue';
-import MkButton from '@client/components/ui/button.vue';
-import XAntenna from './editor.vue';
-import * as symbols from '@client/symbols';
-
-export default defineComponent({
- components: {
- MkButton,
- XAntenna,
- },
-
- data() {
- return {
- [symbols.PAGE_INFO]: {
- title: this.$ts.manageAntennas,
- icon: 'fas fa-satellite',
- },
- draft: {
- name: '',
- src: 'all',
- userListId: null,
- userGroupId: null,
- users: [],
- keywords: [],
- excludeKeywords: [],
- withReplies: false,
- caseSensitive: false,
- withFile: false,
- notify: false
- },
- };
- },
-
- methods: {
- onAntennaCreated() {
- this.$router.push('/my/antennas');
- },
- }
-});
-</script>
-
-<style lang="scss" scoped>
-
-</style>