|
@@ -4,6 +4,7 @@ import ProgressButton from '../progress_button/progress_button.vue'
|
|
|
import FollowButton from '../follow_button/follow_button.vue'
|
|
|
import ModerationTools from '../moderation_tools/moderation_tools.vue'
|
|
|
import AccountActions from '../account_actions/account_actions.vue'
|
|
|
+import UserNote from '../user_note/user_note.vue'
|
|
|
import Select from '../select/select.vue'
|
|
|
import UserLink from '../user_link/user_link.vue'
|
|
|
import RichContent from 'src/components/rich_content/rich_content.jsx'
|
|
@@ -39,7 +40,8 @@ export default {
|
|
|
'rounded',
|
|
|
'bordered',
|
|
|
'avatarAction', // default - open profile, 'zoom' - zoom, function - call function
|
|
|
- 'onClose'
|
|
|
+ 'onClose',
|
|
|
+ 'hasNoteEditor'
|
|
|
],
|
|
|
data () {
|
|
|
return {
|
|
@@ -129,6 +131,12 @@ export default {
|
|
|
const privileges = this.loggedIn.privileges
|
|
|
return this.loggedIn.role === 'admin' || privileges.includes('users_manage_activation_state') || privileges.includes('users_delete') || privileges.includes('users_manage_tags')
|
|
|
},
|
|
|
+ hasNote () {
|
|
|
+ return this.relationship.note
|
|
|
+ },
|
|
|
+ supportsNote () {
|
|
|
+ return 'note' in this.relationship
|
|
|
+ },
|
|
|
...mapGetters(['mergedConfig'])
|
|
|
},
|
|
|
components: {
|
|
@@ -140,7 +148,8 @@ export default {
|
|
|
FollowButton,
|
|
|
Select,
|
|
|
RichContent,
|
|
|
- UserLink
|
|
|
+ UserLink,
|
|
|
+ UserNote
|
|
|
},
|
|
|
methods: {
|
|
|
muteUser () {
|