-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable issue notifications other repos (#1321)
- Loading branch information
Showing
7 changed files
with
79 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 3 additions & 13 deletions
16
dashboard/server/src/main/java/build/bazel/dashboard/github/repo/GithubRepoRepo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,10 @@ | ||
package build.bazel.dashboard.github.repo; | ||
|
||
import io.reactivex.rxjava3.core.Flowable; | ||
import lombok.Builder; | ||
import lombok.Value; | ||
|
||
import java.time.Instant; | ||
import io.reactivex.rxjava3.core.Maybe; | ||
|
||
public interface GithubRepoRepo { | ||
@Builder | ||
@Value | ||
class GithubRepoData { | ||
String owner; | ||
String repo; | ||
Instant createdAt; | ||
Instant updatedAt; | ||
} | ||
Maybe<GithubRepo> findOne(String owner, String repo); | ||
|
||
Flowable<GithubRepoData> findAll(); | ||
Flowable<GithubRepo> findAll(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters