mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update Activity.vue component
This commit is contained in:
parent
f4039ce218
commit
6ef7597356
1 changed files with 6 additions and 1 deletions
|
@ -115,7 +115,11 @@ export default {
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
fetchNotifications() {
|
fetchNotifications() {
|
||||||
axios.get('/api/pixelfed/v1/notifications')
|
axios.get('/api/pixelfed/v1/notifications', {
|
||||||
|
params: {
|
||||||
|
pg: true
|
||||||
|
}
|
||||||
|
})
|
||||||
.then(res => {
|
.then(res => {
|
||||||
let data = res.data.filter(n => {
|
let data = res.data.filter(n => {
|
||||||
if(n.type == 'share' && !status) {
|
if(n.type == 'share' && !status) {
|
||||||
|
@ -138,6 +142,7 @@ export default {
|
||||||
}
|
}
|
||||||
axios.get('/api/pixelfed/v1/notifications', {
|
axios.get('/api/pixelfed/v1/notifications', {
|
||||||
params: {
|
params: {
|
||||||
|
pg: true,
|
||||||
page: this.notificationCursor
|
page: this.notificationCursor
|
||||||
}
|
}
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|
Loading…
Reference in a new issue