mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 19:33:02 +03:00
6 lines
155 B
JavaScript
6 lines
155 B
JavaScript
|
import {paginatedResponse} from '../utils';
|
||
|
|
||
|
export default function mockMentions(server) {
|
||
|
server.get('/mentions/', paginatedResponse('mentions'));
|
||
|
}
|