mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-19 13:45:12 +00:00
25 lines
942 B
C#
25 lines
942 B
C#
using System;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
public interface IObservableAssigneesClient
|
|
{
|
|
/// <summary>
|
|
/// Gets all the available assignees (owner + collaborators) to which issues may be assigned.
|
|
/// </summary>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <returns></returns>
|
|
IObservable<User> GetAllForRepository(string owner, string name);
|
|
|
|
/// <summary>
|
|
/// Checks to see if a user is an assignee for a repository.
|
|
/// </summary>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="assignee">Username of the prospective assignee</param>
|
|
/// <returns></returns>
|
|
IObservable<bool> CheckAssignee(string owner, string name, string assignee);
|
|
}
|
|
}
|