Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
Fix lint error
  • Loading branch information
daniel-va committed Jul 25, 2024
1 parent f33438b commit 84ebfee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,14 @@
- Direktauswahl von Assets ohne Suche
- Testing
- Regeneriere Elasticsearch Index via Admin Panel
- Einteilung von Assets in Arbeitsgruppen

### Changed

- UI Refactoring: Neuanordnung der Container
- UI Refactoring: Suchergebnisse als Tabelle
- Update Dependencies
- Bearbeitungsrechte werden auf Basis der Arbeitsgruppen vergeben anstatt global

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion apps/server-asset-sg/src/core/middleware/jwt.middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { User } from '@asset-sg/shared/v2';
import { environment } from '@environment';
import { CACHE_MANAGER } from '@nestjs/cache-manager';
import { HttpException, Inject, Injectable, NestMiddleware } from '@nestjs/common';
import { Prisma } from '@prisma/client';
import axios from 'axios';
import { Cache } from 'cache-manager';
import { NextFunction, Request, Response } from 'express';
Expand All @@ -14,7 +15,6 @@ import jwkToPem from 'jwk-to-pem';

import { UserRepo } from '@/features/users/user.repo';
import { JwtRequest } from '@/models/jwt-request';
import { Prisma } from '@prisma/client';

@Injectable()
export class JwtMiddleware implements NestMiddleware {
Expand Down

0 comments on commit 84ebfee

Please sign in to comment.