File tree 2 files changed +4
-1
lines changed
database/migrations/functions/dashboard
gitjobs-server/src/templates/dashboard/employer
2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 24
24
' state' , l .state
25
25
)), ' {}' ::jsonb)
26
26
) as job_location,
27
+ j .workplace as job_workplace,
27
28
p .job_seeker_profile_id ,
28
29
p .photo_id ,
29
30
p .name ,
55
56
' job_title' , job_title,
56
57
' job_location' , job_location,
57
58
' job_seeker_profile_id' , job_seeker_profile_id,
59
+ ' job_workplace' , job_workplace,
58
60
' photo_id' , photo_id,
59
61
' name' , name,
60
62
' last_position' , last_position
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ use serde_with::skip_serializing_none;
8
8
use uuid:: Uuid ;
9
9
10
10
use crate :: templates:: {
11
- dashboard:: employer:: jobs:: JobSummary ,
11
+ dashboard:: employer:: jobs:: { JobSummary , Workplace } ,
12
12
helpers:: { DATE_FORMAT , build_dashboard_image_url} ,
13
13
misc:: Location ,
14
14
pagination:: { NavigationLinks , Pagination } ,
@@ -48,6 +48,7 @@ pub(crate) struct Application {
48
48
job_id : Uuid ,
49
49
job_title : String ,
50
50
job_seeker_profile_id : Uuid ,
51
+ job_workplace : Workplace ,
51
52
52
53
job_location : Option < Location > ,
53
54
last_position : Option < String > ,
You can’t perform that action at this time.
0 commit comments