aboutsummaryrefslogtreecommitdiff
path: root/src/components/conversation-page/conversation-page.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/conversation-page/conversation-page.js')
-rw-r--r--src/components/conversation-page/conversation-page.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/conversation-page/conversation-page.js b/src/components/conversation-page/conversation-page.js
new file mode 100644
index 00000000..beffa5bb
--- /dev/null
+++ b/src/components/conversation-page/conversation-page.js
@@ -0,0 +1,19 @@
+import Conversation from '../conversation/conversation.vue'
+import { find, toInteger } from 'lodash'
+
+const conversationPage = {
+ components: {
+ Conversation
+ },
+ computed: {
+ statusoid () {
+ const id = toInteger(this.$route.params.id)
+ const statuses = this.$store.state.statuses.allStatuses
+ const status = find(statuses, {id})
+
+ return status
+ }
+ }
+}
+
+export default conversationPage