diff --git a/discord/user.py b/discord/user.py index 101a3b1e12..3a51f3afea 100644 --- a/discord/user.py +++ b/discord/user.py @@ -143,6 +143,14 @@ def _to_minimal_user_json(self) -> Dict[str, Any]: "bot": self.bot, } + @property + def jump_url(self) -> str: + """:class:`str`: Returns a URL that allows the client to jump to the user. + + .. versionadded:: 2.0 + """ + return f"https://discord.com/users/{self.id}" + @property def public_flags(self) -> PublicUserFlags: """:class:`PublicUserFlags`: The publicly available flags the user has."""