Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions Octokit/Models/Request/NewRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public NewRepository(string name)
/// </summary>
public bool? HasIssues { get; set; }

/// <summary>
/// Optional. Gets or sets whether to enable projects for the new repository. The default is true.
/// </summary>
public bool? HasProjects { get; set; }

/// <summary>
/// Optional. Gets or sets whether to enable the wiki for the new repository. The default is true.
/// </summary>
Expand Down Expand Up @@ -115,6 +120,11 @@ public NewRepository(string name)
/// </summary>
public bool? AllowAutoMerge { get; set; }

/// <summary>
/// Optional. Gets or sets whether the squash pr title is used as default when using Squash Merge. Default is false. Cannot currently be tested as it isn't returned in the GET method.
/// </summary>
public bool? UseSquashPrTitleAsDefault { get; set; }

internal string DebuggerDisplay
{
get
Expand Down