-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #256 from mash-up-kr/develop
Release v1.4.0 배포
- Loading branch information
Showing
23 changed files
with
147 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { StorageDataResponse, StorageDataRequest } from '@/types/dto'; | ||
import BaseApiService from './base'; | ||
|
||
class AdminApiService extends BaseApiService { | ||
public constructor() { | ||
super(undefined, process.env.ADMIN_DESTINATION_PATH); | ||
} | ||
|
||
public getRecruitDataFromStorage({ | ||
accessToken, | ||
key, | ||
}: StorageDataRequest): Promise<StorageDataResponse> { | ||
return this.http | ||
.get(`/storage/key/recruit-${key}`, { | ||
headers: { | ||
Authorization: `Bearer ${accessToken}`, | ||
}, | ||
}) | ||
.then(BaseApiService.handleResponse) | ||
.catch(BaseApiService.handleError); | ||
} | ||
} | ||
|
||
export default new AdminApiService(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
export { default as applicantApiService } from './applicant'; | ||
export { default as applicationApiService } from './application'; | ||
export { default as teamApiService } from './team'; | ||
export { default as adminApiService } from './admin'; |
17 changes: 0 additions & 17 deletions
17
src/components/recruit/PlatformInformation/PlatformInformation.component.tsx
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
src/components/recruit/PlatformInformation/PlatformInformation.styled.ts
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/components/recruit/PlatformInterviewSchedule/PlatformInterviewSchedule.component.tsx
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/components/recruit/PlatformInterviewSchedule/PlatformInterviewSchedule.styled.ts
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/components/recruit/PlatformStudy/PlatformStudy.component.tsx
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/components/recruit/PlatformStudy/PlatformStudy.styled.ts
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/components/recruit/PlatformTalent/PlatformTalent.component.tsx
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
src/components/recruit/PlatformTalent/PlatformTalent.styled.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.