Skip to content
Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- [#361](https://github.com/JsonApiClient/json_api_client/pull/361) - Call super from inherited method so that it will execute parent classes' implementations

## 1.16.0

- [#359](https://github.com/JsonApiClient/json_api_client/pull/359) - Support gzip content encoding
Expand Down
1 change: 1 addition & 0 deletions lib/json_api_client/resource.rb
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ def immutable(flag = true)

def inherited(subclass)
subclass._immutable = false
super
end

# Specifies the relative path that should be used for this resource;
Expand Down