pleroma-fe/src/components/remote_follow/remote_follow.js

11 lines
261 B
JavaScript
Raw Normal View History

export default {
2022-07-31 11:35:48 +02:00
props: ['user'],
computed: {
subscribeUrl () {
// eslint-disable-next-line no-undef
const serverUrl = new URL(this.user.statusnet_profile_url)
return `${serverUrl.protocol}//${serverUrl.host}/main/ostatus`
}
}
}