Skip to content
This repository has been archived by the owner on Jul 29, 2021. It is now read-only.

Commit

Permalink
feat(view): add picture to a portal view
Browse files Browse the repository at this point in the history
  • Loading branch information
tcompiegne committed Feb 4, 2019
1 parent f7e41d4 commit e8ee8b5
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public class ViewMongo extends Auditable{
private boolean hidden;
private int order;
private String highlightApi;
private String picture;

public String getId() {
return id;
Expand Down Expand Up @@ -87,6 +88,14 @@ public void setHighlightApi(String highlightApi) {
this.highlightApi = highlightApi;
}

public String getPicture() {
return picture;
}

public void setPicture(String picture) {
this.picture = picture;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
Expand Down

0 comments on commit e8ee8b5

Please sign in to comment.