mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 12:03:19 +00:00
Merge pull request #622 from gbaychev/master
The property GravatarId in User and Author models is marked as obsolete
This commit is contained in:
@@ -15,8 +15,12 @@ namespace Octokit
|
|||||||
public string AvatarUrl { get; set; }
|
public string AvatarUrl { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Hex Gravatar identifier
|
/// Hex Gravatar identifier, now obsolete
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// For more details: https://developer.github.com/changes/2014-09-05-removing-gravatar-id/
|
||||||
|
/// </remarks>
|
||||||
|
[Obsolete("This property is now obsolete, use AvatarUrl instead")]
|
||||||
public string GravatarId { get; set; }
|
public string GravatarId { get; set; }
|
||||||
|
|
||||||
public string Url { get; set; }
|
public string Url { get; set; }
|
||||||
|
|||||||
@@ -11,8 +11,12 @@ namespace Octokit
|
|||||||
public class User : Account
|
public class User : Account
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Hex Gravatar identifier
|
/// Hex Gravatar identifier, now obsolete
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// For more details: https://developer.github.com/changes/2014-09-05-removing-gravatar-id/
|
||||||
|
/// </remarks>
|
||||||
|
[Obsolete("This property is now obsolete, use AvatarUrl instead")]
|
||||||
public string GravatarId { get; set; }
|
public string GravatarId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user