Skip to content

Commit

Permalink
OV-0: + jwt logs
Browse files Browse the repository at this point in the history
  • Loading branch information
anton-otroshchenko committed Sep 28, 2024
1 parent 431c83f commit 5adf77e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backend/src/bundles/videos/video.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ class VideoService implements Service {

public async findByUserId(userId: string): Promise<VideoGetAllResponseDto> {
const items = await this.videoRepository.findByUserId(userId);
// eslint-disable-next-line no-console
console.log(userId);
// eslint-disable-next-line no-console
console.log(items);

return {
items: items.map((it) => it.toObject()),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ class PublicVideosApi extends BaseHttpApi {
const headers = new Headers();
headers.append('video_token', jwt.replaceAll('~', '.'));

// eslint-disable-next-line no-console
console.log('headers', headers);

const options = {
method: HTTPMethod.GET,
contentType: ContentType.JSON,
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/bundles/preview/components/preview-wrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import { Preview } from '~/bundles/preview/pages/preview.js';

const PreviewWrapper: React.FC = () => {
const { jwt } = useParams<{ jwt: string }>();
// eslint-disable-next-line no-console
console.log('PreviewWrapper', jwt);
return <Preview jwt={jwt ?? ''} />;
};

Expand Down

0 comments on commit 5adf77e

Please sign in to comment.