akkoma-fe/src/components/remote_follow/remote_follow.js
2024-05-29 03:59:37 +01:00

10 lines
228 B
JavaScript

export default {
props: [ 'user' ],
computed: {
subscribeUrl () {
const serverUrl = new URL(this.user.statusnet_profile_url)
return `${serverUrl.protocol}//${serverUrl.host}/main/ostatus`
}
}
}