Skip to content

Commit f1ab0b8

Browse files
committed
feat(app.module.ts): add support for v1.3 API version in configure method of AppModule class
1 parent fa97c7a commit f1ab0b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app.module.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ const imports = [
7676
export class AppModule implements NestModule {
7777
private readonly logger = new Logger(AppModule.name);
7878
configure(consumer: MiddlewareConsumer) {
79-
const apiVersions = ['v1', 'v1.1', 'v1.2'];
79+
const apiVersions = ['v1', 'v1.1', 'v1.2', 'v1.3'];
8080
const entities = ['movie', 'season', 'person', 'review', 'image', 'keyword'];
8181

8282
const routes = entities.flatMap((name) =>

0 commit comments

Comments
 (0)