mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 14:15:12 +00:00
Renaming for 💋
This commit is contained in:
@@ -25,7 +25,7 @@ namespace Octokit.Reactive
|
|||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<PagesBuild> GetAllBuilds(string owner, string repositoryName);
|
IObservable<PagesBuild> GetAll(string owner, string repositoryName);
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the build metadata for the last build for a given repository
|
/// Gets the build metadata for the last build for a given repository
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -35,6 +35,6 @@ namespace Octokit.Reactive
|
|||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
IObservable<PagesBuild> GetLatestBuild(string owner, string repositoryName);
|
IObservable<PagesBuild> GetLatest(string owner, string repositoryName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ namespace Octokit.Reactive
|
|||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-pages-builds">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PagesBuild> GetAllBuilds(string owner, string repositoryName)
|
public IObservable<PagesBuild> GetAll(string owner, string repositoryName)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName");
|
Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName");
|
||||||
@@ -62,7 +62,7 @@ namespace Octokit.Reactive
|
|||||||
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
/// See the <a href="https://developer.github.com/v3/repos/pages/#list-latest-pages-build">API documentation</a> for more information.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <returns></returns>
|
/// <returns></returns>
|
||||||
public IObservable<PagesBuild> GetLatestBuild(string owner, string repositoryName)
|
public IObservable<PagesBuild> GetLatest(string owner, string repositoryName)
|
||||||
{
|
{
|
||||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||||
Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName");
|
Ensure.ArgumentNotNullOrEmptyString(repositoryName, "repositoryName");
|
||||||
|
|||||||
Reference in New Issue
Block a user