|
|
|
@ -126,7 +126,7 @@
|
|
|
|
this.lazyUpdateVerified = _.debounce(
|
|
|
|
this.lazyUpdateVerified = _.debounce(
|
|
|
|
this.model.updateVerified.bind(this.model),
|
|
|
|
this.model.updateVerified.bind(this.model),
|
|
|
|
1000 // one second
|
|
|
|
1000 // one second
|
|
|
|
);
|
|
|
|
);
|
|
|
|
this.throttledGetProfiles = _.throttle(
|
|
|
|
this.throttledGetProfiles = _.throttle(
|
|
|
|
this.model.getProfiles.bind(this.model),
|
|
|
|
this.model.getProfiles.bind(this.model),
|
|
|
|
1000 * 60 * 5 // five minutes
|
|
|
|
1000 * 60 * 5 // five minutes
|
|
|
|
@ -160,6 +160,7 @@
|
|
|
|
color: this.model.getColor(),
|
|
|
|
color: this.model.getColor(),
|
|
|
|
avatarPath,
|
|
|
|
avatarPath,
|
|
|
|
isVerified: this.model.isVerified(),
|
|
|
|
isVerified: this.model.isVerified(),
|
|
|
|
|
|
|
|
isKeysPending: this.model.isKeysPending(),
|
|
|
|
isMe: this.model.isMe(),
|
|
|
|
isMe: this.model.isMe(),
|
|
|
|
isGroup: !this.model.isPrivate(),
|
|
|
|
isGroup: !this.model.isPrivate(),
|
|
|
|
expirationSettingName,
|
|
|
|
expirationSettingName,
|
|
|
|
|