logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git

remote_follow.js (261B)


  1. export default {
  2. props: ['user'],
  3. computed: {
  4. subscribeUrl () {
  5. // eslint-disable-next-line no-undef
  6. const serverUrl = new URL(this.user.statusnet_profile_url)
  7. return `${serverUrl.protocol}//${serverUrl.host}/main/ostatus`
  8. }
  9. }
  10. }