identity: include scope when validating account recovery token

This commit is contained in:
Abdullah Atta
2024-05-16 13:15:04 +05:00
parent 90dd4e548d
commit abe7e67933

View File

@@ -255,6 +255,7 @@ namespace Streetwriters.Identity.Controllers
return Ok(new
{
access_token = token,
scope = string.Join(' ', Config.ApiScopes.Select(s => s.Name)),
expires_in = 18000
});
}