Skip to content

Commit

Permalink
Rename controller
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdean-digicatapult committed May 8, 2024
1 parent fcd9590 commit cedf7e0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "veritable-ui",
"version": "0.1.4",
"version": "0.1.6",
"description": "UI for Veritable",
"main": "src/index.ts",
"type": "commonjs",
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/connection/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { HTML, HTMLController } from '../HTMLController.js'
@injectable()
@Route('/connection')
@Produces('text/html')
export class RootController extends HTMLController {
export class ConnectionController extends HTMLController {
constructor(
private db: Database,
private connectionTemplates: ConnectionTemplates,
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"target": "ESNext",
"module": "CommonJS",
"moduleResolution": "node",
"typeRoots": ["types/*", "node_modules/@types"],
"forceConsistentCasingInFileNames": true,
"strict": true,
"sourceMap": true,
Expand All @@ -21,5 +20,5 @@
"resolveJsonModule": true
},
"include": ["src", "src/swagger.json"],
"exclude": ["**/__tests__"]
"exclude": ["test", "**/__tests__"]
}

0 comments on commit cedf7e0

Please sign in to comment.