Skip to content

Commit

Permalink
Develop (#68)
Browse files Browse the repository at this point in the history
* Add wikifyDescription param to IssuesService.GetIssues() #64

* Increment version

* Update XML documentation: UserManagementService GetUsers only returns 10 users #66

* Extend class User with RingId property #67

* Update version number
  • Loading branch information
maartenba authored Oct 31, 2017
1 parent 51a37dd commit 8a78f7b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions src/YouTrackSharp/Management/User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ namespace YouTrackSharp.Management
/// </summary>
public class User
{
/// <summary>
/// Ring ID of the user.
/// </summary>
[JsonProperty("ringId")]
public string RingId { get; set; }
/// <summary>
/// Username of the user.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/YouTrackSharp/Management/UserManagementService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public async Task<User> GetUser(string username)
}

/// <summary>
/// Get a list of all available registered users.
/// Get a list of available registered users, paged per 10. Use the <paramref name="start"/> parameter to get subsequent results.
/// </summary>
/// <remarks>Uses the REST API <a href="https://www.jetbrains.com/help/youtrack/standalone/GET-Users.html">Get a list of all available registered users</a>.</remarks>
/// <param name="filter">Search query (part of user login, name or email).</param>
Expand Down
2 changes: 1 addition & 1 deletion src/YouTrackSharp/YouTrackSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Copyright>JetBrains</Copyright>
<RepositoryUrl>https://github.com/JetBrains/YouTrackSharp.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<VersionPrefix>3.2.2</VersionPrefix>
<VersionPrefix>3.2.3</VersionPrefix>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json">
Expand Down
2 changes: 1 addition & 1 deletion tests/YouTrackSharp.Tests/YouTrackSharp.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<PackageIconUrl>https://raw.githubusercontent.com/JetBrains/YouTrackSharp/master/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/JetBrains/YouTrackSharp.git</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<Version>3.2.2</Version>
<Version>3.2.3</Version>
<IsPackable>False</IsPackable>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit 8a78f7b

Please sign in to comment.