Skip to content

Commit

Permalink
Add CPF Join Model schema
Browse files Browse the repository at this point in the history
- Add a "Relations" schema for joining CPFs to CPFs and CPFs to Resources
  • Loading branch information
glassjoseph committed May 19, 2022
1 parent b783cb1 commit b4f2cca
Show file tree
Hide file tree
Showing 4 changed files with 419 additions and 180 deletions.
4 changes: 4 additions & 0 deletions src/org/snaccooperative/schema/SNACSchema.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,10 @@ public boolean visit(Project project, Record record) {
item = new SNACConstellationItem(project, _schema, _cache, record);
break;

case "relation":
item = new SNACConstellationItem(project, _schema, _cache, record);
break;

case "resource":
item = new SNACResourceItem(project, _schema, _cache, record);
break;
Expand Down
Loading

0 comments on commit b4f2cca

Please sign in to comment.