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
50 lines (42 loc) · 1.54 KB
/
service.ts
File metadata and controls
50 lines (42 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* eslint-disable no-prototype-builtins */
import { Injectable } from '@nestjs/common';
import {
OrganizationGitCreateDto,
OrganizationGitStatusUpdateDto,
OrganizationGitUpdateDto,
} from '@dto/organization_git.dto';
import { IGitSyncService } from './Interfaces/IService';
@Injectable()
export class GitSyncService implements IGitSyncService {
constructor() {}
async deleteConfig(organizationId: string, organizationGit: string, gitType: string): Promise<void> {
throw new Error('Method not implemented.');
}
async createOrganizationGit(orgGitCreateDto: OrganizationGitCreateDto, userOrganizationId: string): Promise<any> {
throw new Error('Method not implemented.');
}
async updateOrgGit(
userOrganizationId: string,
organizationId: string,
updateOrgGitDto: OrganizationGitUpdateDto,
gitType: string
): Promise<void> {
throw new Error('Method not implemented.');
}
async updateOrgGitStatus(
organizationId: string,
id: string,
updateOrgGitDto: OrganizationGitStatusUpdateDto
): Promise<void> {
throw new Error('Method not implemented.');
}
async setFinalizeConfig(userId: string, organizationId: string, organizationGitId: string, gitType: string) {
throw new Error('Method not implemented.');
}
async getOrganizationById(userOrganizationId: string, organizationId: string, gitType: string) {
throw new Error('Method not implemented.');
}
async getOrgGitStatusById(userOrganizationId: string, organizationId: string) {
throw new Error('Method not implemented.');
}
}