Skip to content

Commit 5574e0b

Browse files
committed
Remove Lodestone endpoint
This endpoint has been removed from the API, so remove it from the library as well.
1 parent f399034 commit 5574e0b

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

README.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,6 @@ See the examples below to get a better idea of how to access the data.
124124
=> "!Kill_For_A_Friend!"
125125
```
126126

127-
#### Lodestone
128-
```rb
129-
>> updates = client.lodestone(:updates)
130-
=> ...
131-
>> updates.first.title
132-
=> "Companion App Updated (Sep. 18)"
133-
```
134-
135127
#### Patch List
136128
```rb
137129
>> patch = client.patch_list.last

lib/xivapi/request.rb

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -139,13 +139,6 @@ def pvp_team_search(name: nil, server: nil, columns: [])
139139
XIVAPI::Paginator.new(self, params, 'pvpteam/search', LODESTONE_LIMIT)
140140
end
141141

142-
# @param category [String, Symbol] Category to retrieve (e.g. News, Updates, DevBlog)
143-
# @return [Array<OpenStruct>] The requested Lodestone data
144-
def lodestone(category)
145-
endpoint = category.to_s.downcase.delete('_')
146-
request(self, "lodestone/#{endpoint}")
147-
end
148-
149142
# @return [Array<OpenStruct>] List of game patches
150143
def patch_list
151144
request(self, 'patchlist')

0 commit comments

Comments
 (0)