Skip to content

Commit

Permalink
Remove redundant 'Webinar' in the name of the Webinars.GetWebinarTemp…
Browse files Browse the repository at this point in the history
…latesAsync method

Resolves #180
  • Loading branch information
Jericho committed Feb 17, 2022
1 parent fa13ae5 commit c02ee2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/ZoomNet/Resources/IWebinars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,6 @@ public interface IWebinars
/// <returns>
/// An array of <see cref="Template" />.
/// </returns>
Task<Template[]> GetWebinarTemplatesAsync(string userId, CancellationToken cancellationToken = default);
Task<Template[]> GetTemplatesAsync(string userId, CancellationToken cancellationToken = default);
}
}
2 changes: 1 addition & 1 deletion Source/ZoomNet/Resources/Webinars.cs
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,7 @@ public Task<TrackingSource[]> GetTrackingSourcesAsync(long webinarId, Cancellati
/// <returns>
/// An array of <see cref="Template" />.
/// </returns>
public Task<Template[]> GetWebinarTemplatesAsync(string userId, CancellationToken cancellationToken = default)
public Task<Template[]> GetTemplatesAsync(string userId, CancellationToken cancellationToken = default)
{
return _client
.GetAsync($"users/{userId}/webinar_templates")
Expand Down

0 comments on commit c02ee2f

Please sign in to comment.