Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update BotListSpace #202

Merged
merged 5 commits into from
Apr 7, 2021
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
28 changes: 15 additions & 13 deletions docs/general/services.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,19 +52,6 @@ Class: [Blist](/#/docs/main/$$$ref/class/Blist)
Website: https://blist.xyz
</div>

<div align=center>
<p>
<img src="https://botlist.space/img/android-chrome-512x512.png" alt="botlistspace logo" width="100" align="left" />
</p>
<i id="botlistspace"></i>
<i id="botlist.space"></i>
<a href="https://botlist.space"><h1>botlist.space</h1></a>

Keys: `botlistspace`, `botlist.space`
Class: [BotListSpace](/#/docs/main/$$$ref/class/BotListSpace)
Website: https://botlist.space
</div>

<div align=center>
<p>
<img src="https://botsdatabase.com/images/icons/favicon-96x96.png" alt="botsdatabase logo" width="100" align="left" />
Expand Down Expand Up @@ -235,6 +222,21 @@ Class: [DiscordLabs](/#/docs/main/$$$ref/class/DiscordLabs)
Website: https://bots.discordlabs.org/
</div>

<div align=center>
<p>
<img src="https://discordlist.space/img/android-chrome-512x512.png" alt="discordlistspace logo" width="100" align="left" />
</p>
<i id="discordlistspace"></i>
<i id="discordlist.space"></i>
<i id="botlistspace"></i>
<i id="botlist.space"></i>
<a href="https://discordlist.space"><h1>discordlist.space</h1></a>

Keys: `discordlistspace`, `discordlist.space`, `botlistspace`, `botlist.space`
Class: [DiscordListSpace](/#/docs/main/$$$ref/class/DiscordListSpace)
Website: https://discordlist.space
</div>

<div align=center>
<p>
<img src="https://discordlistology.com/idiscord.png" alt="discordlistology logo" width="100" align="left" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,38 @@ import { Util, CountResolvable, IDResolvable } from '../../Utils/Util'
import { Query } from '../../Utils/Constants'

/**
* Represents the botlist.space service.
* Represents the discordlist.space service.
* @see https://docs.botlist.space/
*/
export default class BotListSpace extends Service {
export default class DiscordListSpace extends Service {
/** The values that can be used to select the service. */
static get aliases() {
return ['botlistspace', 'botlist.space']
return [
'discordlistspace',
'discordlist.space',
'botlistspace',
'botlist.space'
]
}

/** The logo URL. */
static get logoURL() {
return 'https://botlist.space/img/android-chrome-512x512.png'
return 'https://discordlist.space/img/android-chrome-512x512.png'
}

/** Service's name. */
static get serviceName() {
return 'botlist.space'
return 'discordlist.space'
}

/** The website URL. */
static get websiteURL() {
return 'https://botlist.space'
return 'https://discordlist.space'
}

/** The base URL of the service's API. */
static get baseURL() {
return 'https://api.botlist.space/v1'
return 'https://api.discordlist.space/v1'
}

/**
Expand Down