forked from ToolJet/ToolJet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservice.ts
More file actions
22 lines (21 loc) · 842 Bytes
/
service.ts
File metadata and controls
22 lines (21 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { User } from '@entities/user.entity';
import { CreateInstanceSettingsDto, UpdateUserSettingsDto } from './dto';
import { IInstanceSettingsService } from './Interfaces/IService';
import { InstanceSettings } from '@entities/instance_settings.entity';
import { Injectable } from '@nestjs/common';
@Injectable()
export class InstanceSettingsService implements IInstanceSettingsService {
constructor() {}
listSettings(): Promise<any> {
throw new Error('Method not implemented.');
}
create(params: CreateInstanceSettingsDto): Promise<InstanceSettings> {
throw new Error('Method not implemented.');
}
update(params: UpdateUserSettingsDto, user: User): Promise<void> {
throw new Error('Method not implemented.');
}
delete(settings_id: string): Promise<any> {
throw new Error('Method not implemented.');
}
}