accountSignedUp: Ember.computed('raid.signups.[].character', 'account.id', function() {
    var accountId = this.get('account.id');
    return this.get('raid.signups').filterBy('character.account.id', accountId);
  })