Skip to content

Commit a8eb6e0

Browse files
authored
Merge pull request #214 from kubero-dev/fix/refactoring-gitlink
Rename types in pipelines.ts to use IgitLink instead of gitLink, in …
2 parents 01bb6a8 + 793818f commit a8eb6e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/routes/pipelines.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import express, { Request, Response } from 'express';
22
import { Auth } from '../modules/auth';
3-
import { gitLink } from '../types';
3+
import { IgitLink } from '../types';
44
import { IApp, IPipeline } from '../types';
55
import { App } from '../modules/application';
66
import { Webhooks } from '@octokit/webhooks';
@@ -28,7 +28,7 @@ Router.post('/cli/pipelines',bearerMiddleware, async function (req: Request, res
2828
req.body.git.repository.provider.toLowerCase(),
2929
req.body.git.repository.ssh_url);
3030

31-
let git: gitLink = {
31+
let git: IgitLink = {
3232
keys: {
3333
priv: "Zm9v",
3434
pub: "YmFy"

0 commit comments

Comments
 (0)