Skip to content
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.

Fix links from dashboard to repos #56

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ public class Repository {
@NotEmpty
private String url;

@JsonProperty
@NotEmpty
private String html_url;

@JsonProperty
@NotNull
private Author owner;
Expand Down Expand Up @@ -59,6 +63,10 @@ public String getUrl() {
return url;
}

public String getHtmlUrl() {
return html_url;
}

public String getDescription() {
return description;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
<div class="repository">
<div class="repository-name">
<a href="{{url}}">{{name}}</a>
<a href="{{htmlUrl}}">{{name}}</a>
</div>
<div class="repository-description">
<p>{{description}}</p>
Expand Down