FEATURE: Installed Version link shows GitHub Compare to branch being followed

This commit is contained in:
cpradio
2016-08-01 17:30:04 -04:00
parent e79c216bc0
commit 1b89c2f0ef
3 changed files with 7 additions and 2 deletions

View File

@@ -24,8 +24,11 @@ const VersionCheck = Discourse.Model.extend({
}.property('missing_versions_count'),
gitLink: function() {
const git_branch = this.get('git_branch');
if (git_branch)
return "https://github.com/discourse/discourse/compare/" + this.get('installed_sha') + "..." + git_branch;
return "https://github.com/discourse/discourse/tree/" + this.get('installed_sha');
}.property('installed_sha'),
}.property('installed_sha', 'git_branch'),
shortSha: function() {
return this.get('installed_sha').substr(0,10);