mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-04 03:16:11 +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; }
|
||||
|
||||
/// <summary>
|
||||
/// Hex Gravatar identifier
|
||||
/// Hex Gravatar identifier, now obsolete
|
||||
/// </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 Url { get; set; }
|
||||
|
||||
@@ -11,8 +11,12 @@ namespace Octokit
|
||||
public class User : Account
|
||||
{
|
||||
/// <summary>
|
||||
/// Hex Gravatar identifier
|
||||
/// Hex Gravatar identifier, now obsolete
|
||||
/// </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; }
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user