Skip to content
Snippets Groups Projects

Resolve "subscription ended on submit"

Merged Dominik Seeger requested to merge 139-subscription-ended-on-submit into master
3 files
+ 27
12
Compare changes
  • Side-by-side
  • Inline
Files
3
<template>
<v-card class="mx-auto center-page" id="subscription-ended">
<v-card-title class="title">
It seems like your subscription has (temporarily) ended.
No submissions left
</v-card-title>
<v-card-text>
If you've been validating feedback or resolving conflicts those subscriptions might become active again.<br/>
If that happens they'll become clickable in the sidebar.
All submissions for <b> {{ submissionTypeName() }} </b> in the current stage have been corrected. If you've
been validating feedback or <br/>
resolving conflicts some submissions may become active again.
If that is the case they will appear clickable in the sidebar again.
</v-card-text>
<v-card-actions class="text-xs-center">
<v-btn to="/home">
@@ -18,10 +20,21 @@
</v-card>
</template>
<script>
export default {
name: 'subscription-ended'
<script lang="ts">
import Vue from 'vue'
import Component from 'vue-class-component'
import store from '@/store/store'
@Component
export default class SubscriptionEnded extends Vue {
get submissionTypes () { return store.state.submissionTypes }
submissionTypeName () {
return this.submissionTypes[this.$route.params.typePk].name
}
}
</script>
<style scoped>
Loading