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