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