Show subscription expiration notifications

This commit is contained in:
silverpill 2022-07-14 20:39:49 +00:00
parent 1845243586
commit cb35d88d77

View file

@ -49,6 +49,13 @@
</router-link> </router-link>
<span>paid for subscription</span> <span>paid for subscription</span>
</template> </template>
<template v-else-if="notification.type === 'subscription_expiration'">
<img :src="require('@/assets/tabler/coin.svg')">
<router-link :to="{ name: 'profile', params: { profileId: notification.account.id }}">
{{ getSenderName(notification) }}
</router-link>
<span>subscription expired</span>
</template>
</div> </div>
<post <post
v-if="notification.status" v-if="notification.status"