This commit is contained in:
syuilo 2018-11-24 07:04:29 +09:00
parent 3f8a72eb88
commit de2b0224d6
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
4 changed files with 1 additions and 20 deletions

View File

@ -31,7 +31,6 @@
<x-followers-you-know :user="user"/>
</div>
</section>
<p v-if="user.host === null">{{ $t('last-used-at') }}: <b><mk-time :time="user.lastUsedAt"/></b></p>
</div>
</template>

View File

@ -27,11 +27,4 @@ export default define(meta, (ps, user, app) => new Promise(async (res, rej) => {
includeHasUnreadNotes: true,
includeSecrets: isSecure
}));
// Update lastUsedAt
User.update({ _id: user._id }, {
$set: {
lastUsedAt: new Date()
}
});
}));

View File

@ -76,7 +76,7 @@ export default define(meta, (ps, me) => new Promise(async (res, rej) => {
$nin: followingIds.concat(mutedUserIds)
},
isLocked: { $ne: true },
lastUsedAt: {
updatedAt: {
$gte: new Date(Date.now() - ms('7days'))
},
host: null

View File

@ -46,7 +46,6 @@ export default class Connection {
switch (type) {
case 'api': this.onApiRequest(body); break;
case 'alive': this.onAlive(); break;
case 'readNotification': this.onReadNotification(body); break;
case 'subNote': this.onSubscribeNote(body); break;
case 'sn': this.onSubscribeNote(body); break; // alias
@ -77,16 +76,6 @@ export default class Connection {
});
}
@autobind
private onAlive() {
// Update lastUsedAt
User.update({ _id: this.user._id }, {
$set: {
'lastUsedAt': new Date()
}
});
}
@autobind
private onReadNotification(payload: any) {
if (!payload.id) return;