github: Use https instead of ssh fot repositories fetching

This commit is contained in:
2021-02-26 18:19:10 +03:00
parent 5606251a83
commit 4a07f4df60

View File

@@ -42,7 +42,7 @@ class Repository(Base):
private = Column(Boolean, nullable=False)
def get_clone_url(self):
return f"git@github.com:{self.user.name}/{self.name}"
return f"https://github.com/{self.user.name}/{self.name}.git"
class AnalyzeTask(Base):