mirror of
https://github.com/directus/directus.git
synced 2026-01-30 18:38:15 -05:00
13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
import ItemsService from './items';
|
|
import { AbstractServiceOptions } from '../types';
|
|
|
|
/**
|
|
* @TODO update foreign key constraints when relations are updated
|
|
*/
|
|
|
|
export default class RelationsService extends ItemsService {
|
|
constructor(options?: AbstractServiceOptions) {
|
|
super('directus_relations', options);
|
|
}
|
|
}
|