8dbc1b0503
* chore(package): update standard to version 12.0.0 * package lock update * fix eslint
8 lines
261 B
JavaScript
8 lines
261 B
JavaScript
import { basename } from './utils'
|
|
import { DEFAULT_TIMEOUT, get } from '../_utils/ajax'
|
|
|
|
export async function getCustomEmoji (instanceName) {
|
|
let url = `${basename(instanceName)}/api/v1/custom_emojis`
|
|
return get(url, null, { timeout: DEFAULT_TIMEOUT })
|
|
}
|