Browse Source

Feature/minor code cleanup (#667)

* Sort imports

* Update changelog
pull/668/head
Thomas Kaul 3 years ago
committed by GitHub
parent
commit
16360c0c67
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      apps/api/src/interceptors/transform-data-source-in-request.interceptor.ts
  2. 1
      apps/api/src/interceptors/transform-data-source-in-response.interceptor.ts

1
apps/api/src/interceptors/transform-data-source-in-request.interceptor.ts

@ -6,6 +6,7 @@ import {
NestInterceptor
} from '@nestjs/common';
import { Observable } from 'rxjs';
import { ConfigurationService } from '../services/configuration.service';
@Injectable()

1
apps/api/src/interceptors/transform-data-source-in-response.interceptor.ts

@ -7,6 +7,7 @@ import {
} from '@nestjs/common';
import { Observable } from 'rxjs';
import { map } from 'rxjs/operators';
import { ConfigurationService } from '../services/configuration.service';
@Injectable()

Loading…
Cancel
Save