summaryrefslogtreecommitdiffstats
path: root/src/App.vue
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-08-22 11:04:25 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-08-22 11:04:25 -0100
commit1efbd581ec4ce6dffeceabb295c4f2057a7c2af1 (patch)
tree11c2dcb0332e9cc9a7cb045951dd2512ad7ceb28 /src/App.vue
parentc09fff65f9395201546bed61b4a6f607c004fa5f (diff)
renaming to Nextcloud Push
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/App.vue b/src/App.vue
index 39e7cbc9..e0198c44 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -210,8 +210,8 @@ export default {
this.$store.dispatch('fetchCurrentAccountInfo', this.cloudId)
}
- if (OCA.Stratos && OCA.Stratos.isEnabled()) {
- OCA.Stratos.addCallback(this.fromStratos, 'social')
+ if (OCA.Push && OCA.Push.isEnabled()) {
+ OCA.Push.addCallback(this.fromPushApp, 'social')
}
},
methods: {
@@ -230,7 +230,7 @@ export default {
resetSearch() {
this.searchTerm = ''
},
- fromStratos: function(data) {
+ fromPushApp: function(data) {
// FIXME: might be better to use Timeline.type() ?
let timeline = 'home'
if (this.$route.name === 'tags') {