Invites can now be managed to some extent
This commit is contained in:
22
app/imports/ui/pages/InviteError.vue
Normal file
22
app/imports/ui/pages/InviteError.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template lang="html">
|
||||
<div>
|
||||
Invite Error!
|
||||
<p>
|
||||
{{ error.reason || error.message || error }}
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
props: {
|
||||
error: {
|
||||
type: [Object, String],
|
||||
required: true,
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="css" scoped>
|
||||
</style>
|
||||
Reference in New Issue
Block a user