Skip to content

Commit 6b33125

Browse files
committed
Add IAuditEntry.Actor that failed to auto-generate
Simply throw new NotImplementedException() for now.
1 parent 5b7e72c commit 6b33125

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Octokit.GraphQL/Model/AuditEntry.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,9 @@ internal StubIAuditEntry(Expression expression) : base(expression)
120120

121121
public string UserUrl { get; }
122122

123+
// HACK: This wasn't auto-generated
124+
IQueryableList<AuditEntryActor> IAuditEntry.Actor => throw new NotImplementedException();
125+
123126
internal static StubIAuditEntry Create(Expression expression)
124127
{
125128
return new StubIAuditEntry(expression);

0 commit comments

Comments
 (0)