mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
13 lines
318 B
TypeScript
13 lines
318 B
TypeScript
import ItemsService from './items';
|
|
import { AbstractServiceOptions } from '../types';
|
|
|
|
/**
|
|
* @TODO only return activity of the collections you have access to
|
|
*/
|
|
|
|
export default class ActivityService extends ItemsService {
|
|
constructor(options?: AbstractServiceOptions) {
|
|
super('directus_activity', options);
|
|
}
|
|
}
|