2021-08-07 17:03:06 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
2021-12-15 09:04:43 +00:00
|
|
|
//
|
2021-08-07 17:03:06 +00:00
|
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License. You may
|
|
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
2021-12-15 09:04:43 +00:00
|
|
|
//
|
2021-08-07 17:03:06 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
2021-12-15 09:04:43 +00:00
|
|
|
//
|
2021-08-07 17:03:06 +00:00
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2022-01-06 11:38:40 +00:00
|
|
|
import { Ref, Space } from '@anticrm/core'
|
2021-12-15 09:04:43 +00:00
|
|
|
import type { IntlString, StatusCode } from '@anticrm/platform'
|
2021-08-07 17:03:06 +00:00
|
|
|
import { mergeIds } from '@anticrm/platform'
|
|
|
|
import recruit, { recruitId } from '@anticrm/recruit'
|
|
|
|
|
|
|
|
export default mergeIds(recruitId, recruit, {
|
2021-09-16 09:46:04 +00:00
|
|
|
status: {
|
|
|
|
ApplicationExists: '' as StatusCode,
|
|
|
|
CandidateRequired: '' as StatusCode,
|
2021-12-15 09:04:43 +00:00
|
|
|
VacancyRequired: '' as StatusCode
|
2021-09-16 09:46:04 +00:00
|
|
|
},
|
2021-08-07 17:03:06 +00:00
|
|
|
string: {
|
|
|
|
CreateVacancy: '' as IntlString,
|
|
|
|
VacancyName: '' as IntlString,
|
|
|
|
VacancyDescription: '' as IntlString,
|
|
|
|
MakePrivate: '' as IntlString,
|
|
|
|
MakePrivateDescription: '' as IntlString,
|
|
|
|
CandidatesName: '' as IntlString,
|
|
|
|
CandidatesDescription: '' as IntlString,
|
2021-11-29 17:19:33 +00:00
|
|
|
CreateAnApplication: '' as IntlString,
|
|
|
|
NoApplicationsForCandidate: '' as IntlString,
|
2021-08-07 17:03:06 +00:00
|
|
|
FirstName: '' as IntlString,
|
2022-01-06 11:38:40 +00:00
|
|
|
LastName: '' as IntlString,
|
|
|
|
Candidates: '' as IntlString,
|
|
|
|
CreateApplication: '' as IntlString,
|
|
|
|
Vacancy: '' as IntlString,
|
|
|
|
SelectVacancy: '' as IntlString,
|
|
|
|
Candidate: '' as IntlString,
|
2022-01-14 09:06:32 +00:00
|
|
|
CreateCandidate: '' as IntlString,
|
2022-01-06 11:38:40 +00:00
|
|
|
AssignRecruiter: '' as IntlString,
|
|
|
|
Recruiters: '' as IntlString,
|
|
|
|
UnAssignRecruiter: '' as IntlString,
|
2022-01-12 09:18:50 +00:00
|
|
|
Create: '' as IntlString,
|
|
|
|
Applications: '' as IntlString,
|
|
|
|
ThisVacancyIsPrivate: '' as IntlString,
|
|
|
|
Description: '' as IntlString,
|
2022-01-14 09:06:32 +00:00
|
|
|
Company: '' as IntlString,
|
|
|
|
Save: '' as IntlString,
|
|
|
|
Edit: '' as IntlString,
|
|
|
|
Delete: '' as IntlString,
|
|
|
|
WorkLocationPreferences: '' as IntlString,
|
|
|
|
Onsite: '' as IntlString,
|
|
|
|
Remote: '' as IntlString
|
2022-01-06 11:38:40 +00:00
|
|
|
},
|
|
|
|
space: {
|
|
|
|
CandidatesPublic: '' as Ref<Space>
|
2021-08-07 17:03:06 +00:00
|
|
|
}
|
|
|
|
})
|