aboutsummaryrefslogtreecommitdiff
path: root/src/components/remote_follow/remote_follow.js
blob: 461d58c9c38fcef5dd8b14f7cd920096842b6351 (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`
    }
  }
}