Add YouTrack to the supported services (#853)

YouTrack is one of GitLab's supported services, but it's missing here.
This commit is contained in:
Andrea 2020-05-30 20:46:56 +02:00 committed by GitHub
parent 1997e3416e
commit a203d32bfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,7 +31,8 @@ export type SupportedService =
| 'teamcity'
| 'jenkins'
| 'jenkins-deprecated'
| 'mock-ci';
| 'mock-ci'
| 'youtrack';
export class Services extends BaseService {
edit(projectId: string | number, serviceName: SupportedService, options?: BaseRequestOptions) {