diff options
| author | lambda <pleromagit@rogerbraun.net> | 2018-12-18 15:26:00 +0000 |
|---|---|---|
| committer | lambda <pleromagit@rogerbraun.net> | 2018-12-18 15:26:00 +0000 |
| commit | 2f28bf95fdce6a215961fe264c236c111e4a1e66 (patch) | |
| tree | 9e91911158deba707b538cbd06b03d51d46344af /src/components/status/status.js | |
| parent | c1ff17ebb0a96d715f8badd0061f78420154a498 (diff) | |
| parent | 63ad08050ef54d2770260989de4b4b7b41c451ef (diff) | |
Merge branch 'feature/new-user-routes' into 'develop'
Make domain.com/username routes work
Closes pleroma#395
See merge request pleroma/pleroma-fe!392
Diffstat (limited to 'src/components/status/status.js')
| -rw-r--r-- | src/components/status/status.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 9a63d047..47a62fdf 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -7,6 +7,7 @@ import UserCardContent from '../user_card_content/user_card_content.vue' import StillImage from '../still-image/still-image.vue' import { filter, find } from 'lodash' import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js' +import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator' const Status = { name: 'Status', @@ -286,6 +287,9 @@ const Status = { }, replyLeave () { this.showPreview = false + }, + userProfileLink (id, name) { + return generateProfileLink(id, name) } }, watch: { |
