mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
9 lines
237 B
JavaScript
9 lines
237 B
JavaScript
|
import ApplicationAdapter from 'ghost-admin/adapters/application';
|
||
|
|
||
|
export default class Mention extends ApplicationAdapter {
|
||
|
queryRecord() {
|
||
|
let url = this.buildURL('mentions');
|
||
|
return this.ajax(url, 'GET');
|
||
|
}
|
||
|
}
|