We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a779671 + 5d6af49 commit 2d7e38bCopy full SHA for 2d7e38b
1 file changed
README.md
@@ -984,7 +984,7 @@ class CityCouncilMeeting < JSONAPI::Resource
984
attribute :title, :location, :approved
985
986
def custom_links(options)
987
- { minutes: options[:serialzer].link_builder.self_link(self) + "/minutes" }
+ { minutes: options[:serializer].link_builder.self_link(self) + "/minutes" }
988
end
989
990
```
@@ -1019,7 +1019,7 @@ class CityCouncilMeeting < JSONAPI::Resource
1019
1020
extra_links = {}
1021
if approved?
1022
- extra_links[:minutes] = options[:serialzer].link_builder.self_link(self) + "/minutes"
+ extra_links[:minutes] = options[:serializer].link_builder.self_link(self) + "/minutes"
1023
1024
extra_links
1025
0 commit comments