forked from platypush/platypush
Added missing web build files
This commit is contained in:
parent
c9f435a6cb
commit
7e31ac6ed8
12 changed files with 51 additions and 0 deletions
17
platypush/backend/http/webapp/dist/static/css/app.5028a669.css
vendored
Normal file
17
platypush/backend/http/webapp/dist/static/css/app.5028a669.css
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-brands-400.7fa789ab.ttf
vendored
Normal file
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-brands-400.7fa789ab.ttf
vendored
Normal file
Binary file not shown.
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-brands-400.859fc388.woff2
vendored
Normal file
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-brands-400.859fc388.woff2
vendored
Normal file
Binary file not shown.
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-regular-400.2ffd018f.woff2
vendored
Normal file
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-regular-400.2ffd018f.woff2
vendored
Normal file
Binary file not shown.
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-regular-400.da02cb7e.ttf
vendored
Normal file
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-regular-400.da02cb7e.ttf
vendored
Normal file
Binary file not shown.
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-solid-900.3a463ec3.ttf
vendored
Normal file
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-solid-900.3a463ec3.ttf
vendored
Normal file
Binary file not shown.
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-solid-900.40ddefd7.woff2
vendored
Normal file
BIN
platypush/backend/http/webapp/dist/static/fonts/fa-solid-900.40ddefd7.woff2
vendored
Normal file
Binary file not shown.
2
platypush/backend/http/webapp/dist/static/js/app-legacy.ab28664f.js
vendored
Normal file
2
platypush/backend/http/webapp/dist/static/js/app-legacy.ab28664f.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
platypush/backend/http/webapp/dist/static/js/app-legacy.ab28664f.js.map
vendored
Normal file
1
platypush/backend/http/webapp/dist/static/js/app-legacy.ab28664f.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
2
platypush/backend/http/webapp/dist/static/js/app.12b17001.js
vendored
Normal file
2
platypush/backend/http/webapp/dist/static/js/app.12b17001.js
vendored
Normal file
File diff suppressed because one or more lines are too long
1
platypush/backend/http/webapp/dist/static/js/app.12b17001.js.map
vendored
Normal file
1
platypush/backend/http/webapp/dist/static/js/app.12b17001.js.map
vendored
Normal file
File diff suppressed because one or more lines are too long
28
platypush/backend/http/webapp/src/components/Ntfy.vue
Normal file
28
platypush/backend/http/webapp/src/components/Ntfy.vue
Normal file
|
@ -0,0 +1,28 @@
|
|||
<template>
|
||||
<div />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Utils from "@/Utils";
|
||||
|
||||
export default {
|
||||
name: "Ntfy",
|
||||
mixins: [Utils],
|
||||
|
||||
methods: {
|
||||
onMessage(event) {
|
||||
this.notify({
|
||||
title: event.title,
|
||||
text: event.message,
|
||||
image: {
|
||||
icon: 'bell',
|
||||
},
|
||||
})
|
||||
},
|
||||
},
|
||||
|
||||
mounted() {
|
||||
this.subscribe(this.onMessage, null, 'platypush.message.event.ntfy.NotificationEvent')
|
||||
},
|
||||
}
|
||||
</script>
|
Loading…
Reference in a new issue