Skip to content

Commit

Permalink
add is_empty on unified exported repos
Browse files Browse the repository at this point in the history
  • Loading branch information
hedatenfreunde committed Aug 18, 2021
1 parent a698177 commit 61540b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions hubgrep_indexer/models/repositories/gitea.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ class GiteaRepository(Repository):
false as is_archived,
false as is_disabled,
mirror as is_mirror,
empty as is_empty,
website as homepage_url,
html_url as repo_url
from
Expand Down
1 change: 1 addition & 0 deletions hubgrep_indexer/models/repositories/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class GithubRepository(Repository):
is_fork as is_fork,
is_archived as is_archived,
is_disabled as is_disabled,
is_empty as is_empty,
false as is_mirror,
homepage_url as homepage_url,
url as repo_url
Expand Down
1 change: 1 addition & 0 deletions hubgrep_indexer/models/repositories/gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ class GitlabRepository(Repository):
false as is_archived,
false as is_disabled,
false as is_mirror,
false as is_empty,
web_url as homepage_url,
http_url_to_repo as repo_url
from
Expand Down

0 comments on commit 61540b4

Please sign in to comment.