Skip to content

Commit e16b44e

Browse files
authored
feat: ⚰️ remove winter job fair 2024 checkboxes (#862)
1 parent 21f9c74 commit e16b44e

File tree

32 files changed

+11
-153
lines changed

32 files changed

+11
-153
lines changed

apps/nestjs-api/src/tp-company-profiles/dtos/tp-company-profile-patch.entityinput.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export class TpCompanyProfilePatchInput extends PartialType(
1212
'about',
1313
'companyName',
1414
'industry',
15-
'joinsDusseldorf24WinterJobFair',
1615
'joinsMunich24SummerJobFair',
1716
'isProfileVisibleToJobseekers',
1817
'linkedInUrl',

apps/nestjs-api/src/tp-job-listings/args/find-all-visible-tp-jobseeker-profiles.args.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,5 @@ class FindAllVisibleTpJobListingsArgsFilter {
2626
federalStates?: FederalState[]
2727

2828
isRemotePossible?: boolean
29-
joinsDusseldorf24WinterJobFair?: boolean
3029
joinsMunich24SummerJobFair?: boolean
3130
}

apps/nestjs-api/src/tp-job-listings/tp-job-listings.service.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export class TpJobListingsService {
2525
private readonly api: SfApiTpJobListingsService,
2626
private readonly tpCompanyRepresentativeRelationshipService: TpCompanyRepresentativeRelationshipsService,
2727
private readonly mapper: TpJobListingMapper
28-
) { }
28+
) {}
2929

3030
async findAll(filter: any = {}) {
3131
const records = await this.api.getAll(filter)
@@ -67,10 +67,6 @@ export class TpJobListingsService {
6767
if (_filter.filter.isRemotePossible) {
6868
filter.Remote_Possible__c = true
6969
}
70-
if (_filter.filter.joinsDusseldorf24WinterJobFair) {
71-
filter['Account__r.ReDI_Joins_Dusseldorf_24_Winter_Job_Fair__c'] =
72-
_filter.filter.joinsDusseldorf24WinterJobFair
73-
}
7470
if (_filter.filter.joinsMunich24SummerJobFair) {
7571
filter['Account__r.ReDI_Joins_Munich_24_Summer_Job_Fair__c'] =
7672
_filter.filter.joinsMunich24SummerJobFair

apps/nestjs-api/src/tp-jobseeker-directory-entries/args/find-all-visible-tp-jobseeker-directory-entries.args.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,4 @@ class FindAllVisibleTpJobseekerDirectoryEntriesFilter {
2626
@Field((type) => [FederalState])
2727
federalStates?: FederalState[]
2828
joinsMunich24SummerJobFair?: boolean
29-
joinsDusseldorf24WinterJobFair?: boolean
3029
}

apps/nestjs-api/src/tp-jobseeker-directory-entries/tp-jobseeker-directory-entries.service.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,6 @@ export class TpJobseekerDirectoryEntriesService {
7979
$in: _filter.filter.federalStates,
8080
}
8181
}
82-
if (_filter.filter.joinsDusseldorf24WinterJobFair) {
83-
filter.Jobseeker_Profiles__r.Joins_Dusseldorf_24_Winter_Job_Fair__c =
84-
_filter.filter.joinsDusseldorf24WinterJobFair
85-
}
8682
if (_filter.filter.joinsMunich24SummerJobFair) {
8783
filter.Jobseeker_Profiles__r.Joins_Munich_24_Summer_Job_Fair__c =
8884
_filter.filter.joinsMunich24SummerJobFair

apps/nestjs-api/src/tp-jobseeker-profile/dto/tp-jobseeker-profile-patch.entityinput.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ export class TpJobseekerProfilePatchInput extends PartialType(
1414
'federalState',
1515
'ifAvailabilityIsDate_date',
1616
'isHired',
17-
'joinsDusseldorf24WinterJobFair',
1817
'joinsMunich24SummerJobFair',
1918
'isProfileVisibleToCompanies',
2019
'location',

apps/redi-talent-pool/src/pages/app/browse/BrowseCompany.tsx

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ export function BrowseCompany() {
5858
skills: withDefault(ArrayParam, []),
5959
federalStates: withDefault(ArrayParam, []),
6060
onlyFavorites: withDefault(BooleanParam, undefined),
61-
joinsDusseldorf24WinterJobFair: withDefault(BooleanParam, undefined),
6261
// joinsMunich24SummerJobFair: withDefault(BooleanParam, undefined),
6362
})
6463
const name = query.name
@@ -68,7 +67,6 @@ export function BrowseCompany() {
6867
const skills = query.skills as TpTechnicalSkill[]
6968
const federalStates = query.federalStates as FederalState[]
7069
const onlyFavorites = query.onlyFavorites
71-
const joinsDusseldorf24WinterJobFair = query.joinsDusseldorf24WinterJobFair
7270
// const joinsMunich24SummerJobFair = query.joinsMunich24SummerJobFair
7371

7472
const jobseekerProfilesQuery =
@@ -80,7 +78,6 @@ export function BrowseCompany() {
8078
employmentTypes,
8179
skills,
8280
federalStates,
83-
joinsDusseldorf24WinterJobFair,
8481
// joinsMunich24SummerJobFair,
8582
},
8683
})
@@ -125,13 +122,6 @@ export function BrowseCompany() {
125122
setQuery((latestQuery) => ({ ...latestQuery, [filterName]: newFilters }))
126123
}
127124

128-
const toggleDusseldorf24WinterJobFairFilter = () =>
129-
setQuery((latestQuery) => ({
130-
...latestQuery,
131-
joinsDusseldorf24WinterJobFair:
132-
joinsDusseldorf24WinterJobFair === undefined ? true : undefined,
133-
}))
134-
135125
// const toggleMunich24SummerJobFairFilter = () =>
136126
// setQuery((latestQuery) => ({
137127
// ...latestQuery,
@@ -151,7 +141,6 @@ export function BrowseCompany() {
151141
desiredPositions: [],
152142
employmentTypes: [],
153143
federalStates: [],
154-
joinsDusseldorf24WinterJobFair: undefined,
155144
// joinsMunich24SummerJobFair: undefined,
156145
}))
157146
}
@@ -161,8 +150,7 @@ export function BrowseCompany() {
161150
skills.length !== 0 ||
162151
desiredPositions.length !== 0 ||
163152
federalStates.length !== 0 ||
164-
employmentTypes.length !== 0 ||
165-
joinsDusseldorf24WinterJobFair
153+
employmentTypes.length !== 0
166154
// || joinsMunich24SummerJobFair
167155

168156
return (
@@ -264,15 +252,6 @@ export function BrowseCompany() {
264252
size="small"
265253
/>
266254
</div>
267-
<div className="filters-inner">
268-
<Checkbox
269-
name="joinsDusseldorf24WinterJobFair"
270-
checked={joinsDusseldorf24WinterJobFair || false}
271-
handleChange={toggleDusseldorf24WinterJobFairFilter}
272-
>
273-
ReDI Düsseldorf Winter Job Fair 2024
274-
</Checkbox>
275-
</div>
276255
<div className="filters-inner"></div>
277256
{/* Hidden until the next Job Fair date announced */}
278257
{/* <div className="filters-inner">
@@ -337,14 +316,6 @@ export function BrowseCompany() {
337316
}
338317
/>
339318
))}
340-
{joinsDusseldorf24WinterJobFair && (
341-
<FilterTag
342-
key="redi-dusseldorf-winter-job-fair-2024-filter"
343-
id="redi-dusseldorf-winter-job-fair-2024-filter"
344-
label="ReDI Düsseldorf Winter Job Fair 2024"
345-
onClickHandler={toggleDusseldorf24WinterJobFairFilter}
346-
/>
347-
)}
348319
{/* {joinsMunich24SummerJobFair && (
349320
<FilterTag
350321
key="redi-munich-winter-job-fair-2024-filter"

apps/redi-talent-pool/src/pages/app/browse/BrowseJobseeker.tsx

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export function BrowseJobseeker() {
6161
federalStates: withDefault(ArrayParam, []),
6262
onlyFavorites: withDefault(BooleanParam, undefined),
6363
isRemotePossible: withDefault(BooleanParam, undefined),
64-
joinsDusseldorf24WinterJobFair: withDefault(BooleanParam, undefined),
6564
// joinsMunich24SummerJobFair: withDefault(BooleanParam, undefined),
6665
})
6766
const relatedPositions = query.relatedPositions as TpDesiredPosition[]
@@ -70,7 +69,6 @@ export function BrowseJobseeker() {
7069
const federalStates = query.federalStates as FederalState[]
7170
const onlyFavorites = query.onlyFavorites
7271
const isRemotePossible = query.isRemotePossible
73-
const joinsDusseldorf24WinterJobFair = query.joinsDusseldorf24WinterJobFair
7472
// const joinsMunich24SummerJobFair = query.joinsMunich24SummerJobFair
7573

7674
const jobListingsQuery = useTpJobListingFindAllVisibleQuery({
@@ -80,7 +78,6 @@ export function BrowseJobseeker() {
8078
employmentTypes: employmentType,
8179
federalStates,
8280
isRemotePossible,
83-
joinsDusseldorf24WinterJobFair,
8481
// joinsMunich24SummerJobFair,
8582
},
8683
})
@@ -131,13 +128,6 @@ export function BrowseJobseeker() {
131128
setQuery((latestQuery) => ({ ...latestQuery, [filterName]: newFilters }))
132129
}
133130

134-
const toggleDusseldorf24WinterJobFair = () =>
135-
setQuery((latestQuery) => ({
136-
...latestQuery,
137-
joinsDusseldorf24WinterJobFair:
138-
joinsDusseldorf24WinterJobFair === undefined ? true : undefined,
139-
}))
140-
141131
// Hidden until the new date announced
142132
// const toggleMunich24SummerJobFairFilter = () =>
143133
// setQuery((latestQuery) => ({
@@ -154,7 +144,6 @@ export function BrowseJobseeker() {
154144
employmentType: [],
155145
federalStates: [],
156146
isRemotePossible: undefined,
157-
joinsDusseldorf24WinterJobFair: undefined,
158147
// joinsMunich24SummerJobFair: undefined,
159148
}))
160149
}
@@ -164,8 +153,7 @@ export function BrowseJobseeker() {
164153
idealTechnicalSkills.length !== 0 ||
165154
employmentType.length !== 0 ||
166155
federalStates.length !== 0 ||
167-
isRemotePossible ||
168-
joinsDusseldorf24WinterJobFair
156+
isRemotePossible
169157
// || joinsMunich24SummerJobFair
170158

171159
// Redirect to homepage if user is not supposed to be browsing yet
@@ -293,15 +281,8 @@ export function BrowseJobseeker() {
293281
size="small"
294282
/>
295283
</div>
296-
<div className="filters-inner">
297-
<Checkbox
298-
name="joinsDuesseldorf24WinterJobFair"
299-
checked={joinsDusseldorf24WinterJobFair || false}
300-
handleChange={toggleDusseldorf24WinterJobFair}
301-
>
302-
ReDI Düsseldorf Winter Job Fair 2024
303-
</Checkbox>
304-
</div>
284+
{/* Next Div is to keep three filters sizing for two checkboxes. Remove if necessary */}
285+
<div className="filters-inner"></div>
305286
</div>
306287
{/* Hidden until the next Job Fair date announced */}
307288
{/* <div className="filters"> */}
@@ -314,7 +295,6 @@ export function BrowseJobseeker() {
314295
ReDI Munich Winter Job Fair 2024
315296
</Checkbox> */}
316297
{/* </div> */}
317-
{/* <div className="filters-inner"></div> */}
318298
{/* </div> */}
319299

320300
<div className="active-filters">
@@ -372,14 +352,6 @@ export function BrowseJobseeker() {
372352
onClickHandler={toggleRemoteAvailableFilter}
373353
/>
374354
)}
375-
{joinsDusseldorf24WinterJobFair && (
376-
<FilterTag
377-
key="redi-dusseldorf-winter-job-fair-2024-filter"
378-
id="redi-dusseldorf-winter-job-fair-2024-filter"
379-
label="ReDI Düsseldorf Winter Job Fair 2024"
380-
onClickHandler={toggleDusseldorf24WinterJobFair}
381-
/>
382-
)}
383355
{/* {joinsMunich24SummerJobFair && (
384356
<FilterTag
385357
key="redi-munich-winter-job-fair-2024-filter"

apps/redi-talent-pool/src/pages/app/job-listing/JobListing.generated.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type FindOneJobListingQueryVariables = Types.Exact<{
1111
}>;
1212

1313

14-
export type FindOneJobListingQuery = { __typename?: 'Query', tpJobListing: { __typename?: 'TpJobListing', createdAt: any, expiresAt?: any | null, status?: Types.TpJobListingStatus | null, title?: string | null, updatedAt: any, employmentType?: Types.TpEmploymentType | null, id: string, idealTechnicalSkills?: Array<Types.TpTechnicalSkill> | null, isRemotePossible?: boolean | null, languageRequirements?: string | null, location?: string | null, relatesToPositions?: Array<Types.TpDesiredPosition> | null, salaryRange?: string | null, summary?: string | null, companyProfileId: string, companyName: string, profileAvatarImageS3Key?: string | null, federalState?: Types.FederalState | null, contactFirstName?: string | null, contactLastName?: string | null, contactEmailAddress?: string | null, contactPhoneNumber?: string | null, isFromCareerPartner: boolean, companyProfile: { __typename?: 'TpCompanyProfile', id: string, profileAvatarImageS3Key?: string | null, companyName: string, location?: string | null, tagline?: string | null, industry?: string | null, website?: string | null, linkedInUrl?: string | null, telephoneNumber?: string | null, about?: string | null, state: Types.CompanyTalentPoolState, isProfileVisibleToJobseekers: boolean, isCareerPartner: boolean, joinsDusseldorf24WinterJobFair?: boolean | null, joinsMunich24SummerJobFair?: boolean | null, createdAt: any, updatedAt: any, companyRepresentatives: Array<{ __typename?: 'UserContact', id: string, behanceUrl?: string | null, lastName: string, linkedInProfileUrl?: string | null, loopbackUserId: string, personalDescription?: string | null, personalWebsite?: string | null, postalMailingAddress?: string | null, slackUsername?: string | null, stackOverflowUrl?: string | null, telephoneNumber?: string | null, birthDate?: any | null, twitterUrl?: string | null, updatedAt: any, createdAt: any, dribbbleUrl?: string | null, email: string, firstName: string, gender?: Types.Gender | null, githubProfileUrl?: string | null, howDidHearAboutRediKey?: Types.FirstPointOfTpContactOption | null, howDidHearAboutRediOtherText?: string | null }> } } };
14+
export type FindOneJobListingQuery = { __typename?: 'Query', tpJobListing: { __typename?: 'TpJobListing', createdAt: any, expiresAt?: any | null, status?: Types.TpJobListingStatus | null, title?: string | null, updatedAt: any, employmentType?: Types.TpEmploymentType | null, id: string, idealTechnicalSkills?: Array<Types.TpTechnicalSkill> | null, isRemotePossible?: boolean | null, languageRequirements?: string | null, location?: string | null, relatesToPositions?: Array<Types.TpDesiredPosition> | null, salaryRange?: string | null, summary?: string | null, companyProfileId: string, companyName: string, profileAvatarImageS3Key?: string | null, federalState?: Types.FederalState | null, contactFirstName?: string | null, contactLastName?: string | null, contactEmailAddress?: string | null, contactPhoneNumber?: string | null, isFromCareerPartner: boolean, companyProfile: { __typename?: 'TpCompanyProfile', id: string, profileAvatarImageS3Key?: string | null, companyName: string, location?: string | null, tagline?: string | null, industry?: string | null, website?: string | null, linkedInUrl?: string | null, telephoneNumber?: string | null, about?: string | null, state: Types.CompanyTalentPoolState, isProfileVisibleToJobseekers: boolean, isCareerPartner: boolean, joinsMunich24SummerJobFair?: boolean | null, createdAt: any, updatedAt: any, companyRepresentatives: Array<{ __typename?: 'UserContact', id: string, behanceUrl?: string | null, lastName: string, linkedInProfileUrl?: string | null, loopbackUserId: string, personalDescription?: string | null, personalWebsite?: string | null, postalMailingAddress?: string | null, slackUsername?: string | null, stackOverflowUrl?: string | null, telephoneNumber?: string | null, birthDate?: any | null, twitterUrl?: string | null, updatedAt: any, createdAt: any, dribbbleUrl?: string | null, email: string, firstName: string, gender?: Types.Gender | null, githubProfileUrl?: string | null, howDidHearAboutRediKey?: Types.FirstPointOfTpContactOption | null, howDidHearAboutRediOtherText?: string | null }> } } };
1515

1616

1717
export const FindOneJobListingDocument = `

apps/redi-talent-pool/src/pages/app/jobseeker-profile/JobseekerProfileForJobseekerEyes.tsx

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,6 @@ export function JobseekerProfileForJobseekerEyes() {
4545
queryClient.invalidateQueries()
4646
}
4747

48-
const onDusseldorf24WinterJobFairParticipateChange = async () => {
49-
await mutation.mutateAsync({
50-
input: {
51-
joinsDusseldorf24WinterJobFair:
52-
!profile?.joinsDusseldorf24WinterJobFair,
53-
},
54-
})
55-
queryClient.invalidateQueries()
56-
}
57-
5848
// Hidden until the new date announced
5949
// const onMunich24SummerJobFairParticipateChange = async () => {
6050
// await mutation.mutateAsync({
@@ -91,19 +81,10 @@ export function JobseekerProfileForJobseekerEyes() {
9181
</div>
9282
<EditableNamePhotoLocation profile={profile} />
9383
<div style={{ marginBottom: '1.5rem' }}>
94-
<Checkbox
95-
checked={profile?.joinsDusseldorf24WinterJobFair}
96-
customOnChange={onDusseldorf24WinterJobFairParticipateChange}
97-
disabled={profile?.joinsMunich24SummerJobFair}
98-
>
99-
I will attend the <b>ReDI Winter Job Fair in Düsseldorf</b> on{' '}
100-
<b>02/02/2024</b>.
101-
</Checkbox>
10284
{/* Hidden until the next Job Fair date announced */}
10385
{/* <Checkbox
10486
checked={profile?.joinsMunich24SummerJobFair}
10587
customOnChange={onMunich24SummerJobFairParticipateChange}
106-
disabled={profile?.joinsDusseldorf24WinterJobFair}
10788
>
10889
I will attend the <b>ReDI Winter Job Fair in Munich</b> on{' '}
10990
<b>22/02/2024</b>.

apps/redi-talent-pool/src/pages/app/me/MeCompany.tsx

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,6 @@ export function MeCompany() {
5757
queryClient.invalidateQueries()
5858
}
5959

60-
const onDusseldorf24WinterJobFairParticipateChange = async () => {
61-
await mutation.mutateAsync({
62-
input: {
63-
joinsDusseldorf24WinterJobFair:
64-
!companyProfile.joinsDusseldorf24WinterJobFair,
65-
},
66-
})
67-
queryClient.invalidateQueries()
68-
}
69-
7060
// Hidden until the new date announced
7161
// const onMunich24SummerJobFairParticipateChange = async () => {
7262
// await mutation.mutateAsync({
@@ -110,13 +100,6 @@ export function MeCompany() {
110100
<Columns.Column mobile={{ size: 12 }} tablet={{ size: 'three-fifths' }}>
111101
<EditableNamePhotoLocation companyProfile={companyProfile} />
112102
<div style={{ marginBottom: '1.5rem' }}>
113-
<Checkbox
114-
checked={companyProfile.joinsDusseldorf24WinterJobFair}
115-
customOnChange={onDusseldorf24WinterJobFairParticipateChange}
116-
>
117-
My company will attend the{' '}
118-
<b>ReDI Winter Job Fair in Düsseldorf</b> on <b>02/02/2024</b>.
119-
</Checkbox>
120103
{/* Hidden until the next Job Fair date announced */}
121104
{/* <Checkbox
122105
checked={companyProfile.joinsMunich24SummerJobFair}

libs/common-types/src/lib/tp-company-profile/account.record.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ export class AccountRecord extends Record<AccountRecordProps> {
3232
'ReDI_Talent_Pool_State__c',
3333
'ReDI_Visible_to_Jobseekers__c',
3434
'ReDI_Career_Partner__c',
35-
'ReDI_Joins_Dusseldorf_24_Winter_Job_Fair__c',
3635
'ReDI_Joins_Munich_24_Summer_Job_Fair__c',
3736
],
3837
}

libs/common-types/src/lib/tp-company-profile/account.recordprops.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ export class AccountRecordProps implements RecordProps {
1616
ReDI_Talent_Pool_State__c: string
1717
ReDI_Visible_to_Jobseekers__c: boolean
1818
ReDI_Career_Partner__c: boolean
19-
ReDI_Joins_Dusseldorf_24_Winter_Job_Fair__c?: boolean
2019
ReDI_Joins_Munich_24_Summer_Job_Fair__c?: boolean
2120

2221
@Type(() => Date)

libs/common-types/src/lib/tp-company-profile/tp-company-profile.entityprops.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ export class TpCompanyProfileEntityProps implements EntityProps {
2020
state: CompanyTalentPoolState
2121
isProfileVisibleToJobseekers: boolean
2222
isCareerPartner: boolean
23-
joinsDusseldorf24WinterJobFair?: boolean
2423
joinsMunich24SummerJobFair?: boolean
2524

2625
createdAt: Date

libs/common-types/src/lib/tp-company-profile/tp-company-profile.mapper.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ export class TpCompanyProfileMapper
2929
props.state = raw.props.ReDI_Talent_Pool_State__c as CompanyTalentPoolState
3030
props.isProfileVisibleToJobseekers = raw.props.ReDI_Visible_to_Jobseekers__c
3131
props.isCareerPartner = raw.props.ReDI_Career_Partner__c
32-
props.joinsDusseldorf24WinterJobFair =
33-
raw.props.ReDI_Joins_Dusseldorf_24_Winter_Job_Fair__c
3432
props.joinsMunich24SummerJobFair =
3533
raw.props.ReDI_Joins_Munich_24_Summer_Job_Fair__c
3634

@@ -59,8 +57,6 @@ export class TpCompanyProfileMapper
5957
props.Description = srcProps.about
6058
props.ReDI_Talent_Pool_State__c = srcProps.state
6159
props.ReDI_Visible_to_Jobseekers__c = srcProps.isProfileVisibleToJobseekers
62-
props.ReDI_Joins_Dusseldorf_24_Winter_Job_Fair__c =
63-
srcProps.joinsDusseldorf24WinterJobFair
6460
props.ReDI_Joins_Munich_24_Summer_Job_Fair__c =
6561
srcProps.joinsMunich24SummerJobFair
6662

libs/common-types/src/lib/tp-jobseeker/tp-jobseeker-directory-entries/tp-jobseeker-directory-entry.entityprops.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export class TpJobseekerDirectoryEntryEntityProps implements EntityProps {
5353
topSkills?: Array<TpTechnicalSkill>
5454
@Field((type) => JobseekerProfileStatus)
5555
state: JobseekerProfileStatus
56-
joinsDusseldorf24WinterJobFair?: boolean
5756
joinsMunich24SummerJobFair?: boolean
5857
isProfileVisibleToCompanies: boolean
5958
isHired: boolean

libs/common-types/src/lib/tp-jobseeker/tp-jobseeker-directory-entries/tp-jobseeker-directory-entry.mapper.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ export class TpJobseekerDirectoryEntryMapper
7171
) as TpTechnicalSkill[]) ?? undefined
7272
props.state =
7373
jobseekerProfileRecord.Profile_Status__c as JobseekerProfileStatus
74-
props.joinsDusseldorf24WinterJobFair =
75-
jobseekerProfileRecord.Joins_Dusseldorf_24_Winter_Job_Fair__c
7674
props.joinsMunich24SummerJobFair =
7775
jobseekerProfileRecord.Joins_Munich_24_Summer_Job_Fair__c
7876
props.isProfileVisibleToCompanies =

libs/common-types/src/lib/tp-jobseeker/tp-jobseeker-directory-entries/tp-jobseeker-directory-entry.record.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ export class TpJobseekerDirectoryEntryRecord extends Record<TpJobseekerDirectory
9595
'About_Yourself__c',
9696
'Top_Skills__c',
9797
'Profile_Status__c',
98-
'Joins_Dusseldorf_24_Winter_Job_Fair__c',
9998
'Joins_Munich_24_Summer_Job_Fair__c',
10099
'Is_Visible_to_Companies__c',
101100
'Is_Hired__c',

libs/common-types/src/lib/tp-jobseeker/tp-jobseeker-directory-entries/tp-jobseeker-directory-entry.recordprops.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ class JobseekerProfileItem {
5959
About_Yourself__c?: string
6060
Top_Skills__c?: PicklistValuesSemicolonSeparated
6161
Profile_Status__c: PicklistValue
62-
Joins_Dusseldorf_24_Winter_Job_Fair__c?: boolean
6362
Joins_Munich_24_Summer_Job_Fair__c?: boolean
6463
Is_Visible_to_Companies__c: boolean
6564
Is_Hired__c: boolean

0 commit comments

Comments
 (0)