mirror of
https://forgejo.ellis.link/continuwuation/continuwuity/
synced 2026-06-09 10:11:48 +00:00
fix: Check for existing device when creating oauth session
This commit is contained in:
@@ -350,6 +350,20 @@ async fn create_session(
|
||||
})
|
||||
.ok_or_else(|| OAuthError::invalid_grant("No device ID scope supplied"))?;
|
||||
|
||||
if self
|
||||
.services
|
||||
.users
|
||||
.get_device_metadata(&authorizing_user, device_id)
|
||||
.await
|
||||
.is_ok()
|
||||
{
|
||||
return Err(OAuthError {
|
||||
error: ErrorCode::InvalidScope,
|
||||
error_description: "A device with the supplied ID already exists for this user"
|
||||
.into(),
|
||||
});
|
||||
}
|
||||
|
||||
self.services
|
||||
.users
|
||||
.create_device(
|
||||
|
||||
Reference in New Issue
Block a user