set last_seen_ip on new/initial device creation
this is not automatically updating, but at least have something useful there instead of nothing Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
22f8c339fc
commit
57940f38ea
4 changed files with 28 additions and 12 deletions
|
@ -328,9 +328,10 @@ impl Service {
|
|||
/// Adds a new device to a user.
|
||||
pub fn create_device(
|
||||
&self, user_id: &UserId, device_id: &DeviceId, token: &str, initial_device_display_name: Option<String>,
|
||||
client_ip: Option<String>,
|
||||
) -> Result<()> {
|
||||
self.db
|
||||
.create_device(user_id, device_id, token, initial_device_display_name)
|
||||
.create_device(user_id, device_id, token, initial_device_display_name, client_ip)
|
||||
}
|
||||
|
||||
/// Removes a device from a user.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue