Skip to content

Commit

Permalink
Added sections to client
Browse files Browse the repository at this point in the history
  • Loading branch information
rossgrambo-zz committed Oct 1, 2020
1 parent 3e07fb1 commit b2a219f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/com/asana/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ public class Client {
public Projects projects;
public ProjectStatuses projectStatuses;
public ProjectMemberships projectMemberships;
public Sections sections;
public Stories stories;
public Tags tags;
public Tasks tasks;
Expand Down Expand Up @@ -121,6 +122,7 @@ public Client(Dispatcher dispatcher, Map<String, Object> options, Map<String, St
this.projects = new Projects(this);
this.projectStatuses = new ProjectStatuses(this);
this.projectMemberships = new ProjectMemberships(this);
this.sections = new Sections(this);
this.stories = new Stories(this);
this.tags = new Tags(this);
this.tasks = new Tasks(this);
Expand Down

0 comments on commit b2a219f

Please sign in to comment.