aboutsummaryrefslogtreecommitdiff
path: root/src/components/remote_follow/remote_follow.js
blob: 56b264fc9034869e151187384494c13ce3f2aca1 (plain)
1
2
3
4
5
6
7
8
9
10
export default {
  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`
    }
  }
}