@finema/finework-layer 2.0.9 → 2.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.10](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.9...2.0.10) (2026-07-07)
|
|
4
|
+
|
|
3
5
|
## [2.0.9](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.8...2.0.9) (2026-07-07)
|
|
4
6
|
|
|
5
7
|
## [2.0.8](https://gitlab.finema.co/finema/finework/finework-frontend-layer/compare/2.0.7...2.0.8) (2026-07-03)
|
|
@@ -201,6 +201,17 @@ const getLink = (item: INotificationItem) => {
|
|
|
201
201
|
}
|
|
202
202
|
}
|
|
203
203
|
|
|
204
|
+
case 'RECRUIT':
|
|
205
|
+
{
|
|
206
|
+
switch (item.action_type) {
|
|
207
|
+
case 'RECRUIT_INTERVIEW_REVIEW_ASSIGNED':
|
|
208
|
+
return `/recruit/interview-reviews/${item.source_id}`
|
|
209
|
+
|
|
210
|
+
default:
|
|
211
|
+
return '#'
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
204
215
|
default:
|
|
205
216
|
return '#'
|
|
206
217
|
}
|
|
@@ -225,6 +236,8 @@ const getImage = (item: INotificationItem): string | null => {
|
|
|
225
236
|
return `/admin/cost-sheet.png`
|
|
226
237
|
} else if (item.source_type?.startsWith('REQUEST')) {
|
|
227
238
|
return `/admin/request.png`
|
|
239
|
+
} else if (item.source_type?.startsWith('RECRUIT')) {
|
|
240
|
+
return `/admin/recruit.png`
|
|
228
241
|
}
|
|
229
242
|
|
|
230
243
|
return null
|