-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed retrieve-battlegroups to retrieve-connectedrealms
Due to a typo I mixed this up and the correct endpoint is the connected-realms endpoint.
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
12 changes: 12 additions & 0 deletions
12
tests/access/game-data/wow/data/retrieve-connectedrealms.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const Access = require('../../../../../src/access') | ||
|
||
class ConnectedRealms extends Access { | ||
constructor (options) { | ||
super(options) | ||
|
||
this.name = 'WoW Connected Realms Access' | ||
this.description = 'Verifies access to the WoW Game Data Connected Realms endpoint.' | ||
} | ||
} | ||
|
||
module.exports = ConnectedRealms |