Skip to content

Commit

Permalink
fix(Lists)!: update InfinityBots (#199)
Browse files Browse the repository at this point in the history
* fix(InfinityBots)!: update list name and website

BREAKING CHANGE: the exported class name has been changed, along with the old aliases.

* [auto] docs: update docs
  • Loading branch information
EndBug authored Apr 6, 2021
1 parent b9eee20 commit b7ee2fb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
14 changes: 7 additions & 7 deletions docs/general/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,15 +302,15 @@ Website: https://glennbotlist.xyz

<div align=center>
<p>
<img src="https://i.imgur.com/x0LCfAh.png" alt="infinitybots logo" width="100" align="left" />
<img src="https://i.imgur.com/x0LCfAh.png" alt="infinitybotlist logo" width="100" align="left" />
</p>
<i id="infinitybots"></i>
<i id="infinitybots.xyz"></i>
<a href="https://infinitybots.xyz"><h1>Infinity Bot List</h1></a>
<i id="infinitybotlist"></i>
<i id="infinitybotlist.com"></i>
<a href="https://infinitybotlist.com/"><h1>Infinity Bot List</h1></a>

Keys: `infinitybots`, `infinitybots.xyz`
Class: [InfinityBots](/#/docs/main/$$$ref/class/InfinityBots)
Website: https://infinitybots.xyz
Keys: `infinitybotlist`, `infinitybotlist.com`
Class: [InfinityBotList](/#/docs/main/$$$ref/class/InfinityBotList)
Website: https://infinitybotlist.com/
</div>

<div align=center>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import { Service, ServicePostOptions } from '../Service'
import { IDResolvable, Util } from '../../Utils/Util'

/**
* Represents the Infinity Bots service.
* @see https://docs.infinitybots.xyz
* Represents the Infinity Bot List service.
* @see https://docs.infinitybotlist.com/
*/
export default class InfinityBots extends Service {
export default class InfinityBotList extends Service {
/** The values that can be used to select the service. */
static get aliases() {
return ['infinitybots', 'infinitybots.xyz']
return ['infinitybotlist', 'infinitybotlist.com']
}

/** The logo URL. */
Expand All @@ -23,12 +23,12 @@ export default class InfinityBots extends Service {

/** The website URL. */
static get websiteURL() {
return 'https://infinitybots.xyz'
return 'https://infinitybotlist.com/'
}

/** The base URL of the service's API. */
static get baseURL() {
return 'https://api.infinitybots.xyz'
return 'https://api.infinitybotlist.com'
}

/**
Expand Down

0 comments on commit b7ee2fb

Please sign in to comment.