Skip to content

Commit

Permalink
Merge branch 'main' of github.com:MuNuChapterHKN/HKrecruitment into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertoBaroso committed Jun 1, 2024
2 parents 7073e2a + 6f0fa2e commit 4eb7351
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fullstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ jobs:
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
2 changes: 1 addition & 1 deletion api/src/availability/availability.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ export class Availability implements AvailabilityInterface {
@ManyToOne(() => User, (user) => user.availabilities)
user: Relation<User>;

// @OneToOne(() => Interview, (interview) => interview.availability)
// @OneToOne(() => Interview)
// interview: Interview;
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getRepositoryToken, getDataSourceToken } from '@nestjs/typeorm';
import { RecruitmentSession } from './recruitment-session.entity';
import { RecruitmentSessionService } from './recruitment-session.service';
import { mockedTimeSlotsService as mockedTimeSlotsServiceClass } from '@mocks/services';
import { MockedDataSource, mockDataSource } from 'src/mocks/data-sources';
import { mockDataSource } from 'src/mocks/data-sources';
import { TimeSlotsService } from 'src/timeslots/timeslots.service';
import { RecruitmentSessionState } from '@hkrecruitment/shared';

Expand Down
2 changes: 0 additions & 2 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ sonar.projectName=HKrecruitment
sonar.javascript.lcov.reportPaths=./coverage/shared/lcov.info, ./coverage/api/lcov.info, ./coverage/api-e2e/lcov.info
sonar.sources=api/, frontend/, shared/
sonar.coverage.exclusions=**/node_modules/**/*, **/*.spec.*, **/*.e2e-spec.*, **/documentation/**/*, **/frontend/**/*, **/test/**/*, **/tests/**/*, **/*.json, **/*.yaml, **/*.yml, **/*.md, **/mocks/**/*
sonar.cpd.exclusions=**/mocks/**/*
sonar.cpd.exclusions=**/mocks/**/*

0 comments on commit 4eb7351

Please sign in to comment.