mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Display user email for administrators
This commit is contained in:
parent
13ba93eecd
commit
eae19ca33d
@ -33,6 +33,16 @@
|
|||||||
<b>{{ scope.row.name | truncate(20) }}</b>
|
<b>{{ scope.row.name | truncate(20) }}</b>
|
||||||
</nuxt-link>
|
</nuxt-link>
|
||||||
</template>
|
</template>
|
||||||
|
<template slot="email" slot-scope="scope">
|
||||||
|
<nuxt-link
|
||||||
|
:to="{
|
||||||
|
name: 'profile-id-slug',
|
||||||
|
params: { id: scope.row.id, slug: scope.row.slug },
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<b>{{ scope.row.email }}</b>
|
||||||
|
</nuxt-link>
|
||||||
|
</template>
|
||||||
<template slot="slug" slot-scope="scope">
|
<template slot="slug" slot-scope="scope">
|
||||||
<nuxt-link
|
<nuxt-link
|
||||||
:to="{
|
:to="{
|
||||||
@ -128,6 +138,7 @@ export default {
|
|||||||
id
|
id
|
||||||
name
|
name
|
||||||
slug
|
slug
|
||||||
|
email
|
||||||
role
|
role
|
||||||
createdAt
|
createdAt
|
||||||
contributionsCount
|
contributionsCount
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user