Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 0aa51f7

Browse files
authored
Merge pull request #596 from github-for-unity/features/lfs-locks-modification-processor
Adding functionality to prevent changes to locked files
2 parents b3850c6 + 0fe6417 commit 0aa51f7

File tree

7 files changed

+261
-116
lines changed

7 files changed

+261
-116
lines changed

src/GitHub.Api/Authentication/IKeychain.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using System.Collections.Generic;
1+
using System;
2+
using System.Collections.Generic;
23
using System.Threading.Tasks;
34

45
namespace GitHub.Unity
@@ -17,5 +18,7 @@ public interface IKeychain
1718
bool HasKeys { get; }
1819
bool NeedsLoad { get; }
1920
void SetToken(UriString host, string token);
21+
22+
event Action ConnectionsChanged;
2023
}
2124
}

0 commit comments

Comments
 (0)