-
Notifications
You must be signed in to change notification settings - Fork 17
[WIP] Show author slug on author and small improvements #170
base: master
Are you sure you want to change the base?
Conversation
pages/moderation/index.vue
Outdated
@@ -70,8 +92,14 @@ | |||
slot-scope="scope" | |||
> | |||
<nuxt-link :to="{ name: 'profile-slug', params: { slug: scope.row.reporter.slug } }"> | |||
{{ scope.row.reporter.name }} | |||
{{ scope.row.reporter.name || 'Anonymus' | truncate(26) }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to.many.dots.make.a.NullPointerException.very.likely
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what do you mean 😄
I find this a terrible idea. You want to be able to change your slug at some point. E.g. I changed my twitter slug from |
@roschaefer but then we do not have any indication or referencing of a user that we could Display. |
@appinteractive this is correct. E.g. each post in mastodon and diaspora has a digital signature. We should do that too. Create a RSA key pair for each user account and digitally sign each post. As a next step we must solve the problem how a user can visually distinguish user accounts with the same name. Maybe sth. like RSA fingerprint => emoji? Telegram secures voice calls with emojis. |
@roschaefer I dont think that that would solve the issue to be honest. At least not at first glance! |
@appinteractive we can take the first part of the fingerprint like Other social networks like Facebook and Twitter don't have this problem so much because only posts of friends of a friend will show up in the news feed. Maybe we need to fine tune our news feed? Additionally we could make an image similarity comparison of avatars. |
Tuning the newsfeed is really important and one of my reasons for the switch to nitro! But with the topic of user identity we have to do way more research and think about a real solution to that problem. |
@appinteractive what's the status? |
I will fix the last issue as soon as possible. |
As a user
I always want to see the user slug near its name
To be able to see who is hiding behind the mutable name
Additionally, I pinned the post menu and fixed the truncation of strings.
Todos