1
0
mirror of https://github.com/flarum/core.git synced 2025-08-04 15:37:51 +02:00

"See" a user on the initial page load too

This commit is contained in:
Toby Zerner
2015-03-30 12:55:39 +10:30
parent 9ae5563947
commit 3b4beaa6ca
3 changed files with 10 additions and 2 deletions

View File

@@ -404,6 +404,13 @@ class User extends Model
return $this;
}
public function updateLastSeen()
{
$this->last_seen_time = time();
return $this;
}
/**
* Check whether or not the user is an administrator.
*