67P/hyperchannel

View on GitHub
app/models/account/irc.js

Summary

Maintainability
A
0 mins
Test Coverage
import Account from 'hyperchannel/models/account';

export default class IrcAccount extends Account {

  protocol = 'IRC';

  get userAddress () {
    return `${this.nickname}@${this.server.hostname}`;
  }

  get sockethubPersonId () {
    return this.userAddress;
  }

}