Skip to content

Commit

Permalink
add head method to project api root
Browse files Browse the repository at this point in the history
  • Loading branch information
jenschude committed Oct 23, 2023
1 parent f176bf1 commit 5972d58
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ public ByProjectKeyGet get() {
return with().get();
}

@Override
public ByProjectKeyHead head() {
return with().head();
}

@Override
public ByProjectKeyPost post(com.commercetools.api.models.project.ProjectUpdate projectUpdate) {
return with().post(projectUpdate);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ public interface ProjectScopedApiRoot {

ByProjectKeyGet get();

ByProjectKeyHead head();

ByProjectKeyPost post(ProjectUpdate projectUpdate);

ByProjectKeyCategoriesRequestBuilder categories();
Expand Down

0 comments on commit 5972d58

Please sign in to comment.