Add set up releases wizard

This commit is contained in:
rubenwardy
2020-12-15 21:22:17 +00:00
parent 14a67b99ba
commit c8406b45d4
8 changed files with 139 additions and 59 deletions

View File

@@ -514,6 +514,10 @@ class Package(db.Model):
return url_for("packages.update_config",
author=self.author.username, name=self.name)
def getSetupReleasesURL(self):
return url_for("packages.setup_releases",
author=self.author.username, name=self.name)
def getDownloadURL(self):
return url_for("packages.download",
author=self.author.username, name=self.name)