Skip to content

Commit

Permalink
feat : add duration in new leave email template
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-mansi-d committed Sep 11, 2023
1 parent 93897c5 commit d69cd7d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions api-doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,10 +309,11 @@
- Headers : none
- Body :
{
"name": "mansi dhameliya",
"date": "3 jan 2023", // OR if you want to add multiple dates, you can add like this : "3 jan 2023 to 5 jan 2023"
"status": 1, // you can use 1 for request
"reason": "Casual Leave",
"name": "mansi dhameliya",
"date": "3 jan 2023", // OR if you want to add multiple dates, you can add like this : "3 jan 2023 to 5 jan 2023"
"duration": "morning" // // You can add morning or evening or 3 days as you want
"status": 1, // you can use 1 for request
"reason": "Casual Leave",
"receiver": "[email protected]",
}
- Response :
Expand Down
1 change: 1 addition & 0 deletions leave/leave.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const (
type LeaveData struct {
Name string `json:"name" form:"name"`
Date string `json:"date" form:"date"`
Duration string `json:"duration" form:"duration"`
Status int `json:"status" form:"status"`
Reason string `json:"reason" form:"reason"`
Receiver string `json:"receiver" form:"receiver"`
Expand Down
4 changes: 2 additions & 2 deletions leave/templates/new-leave-email-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<tbody>
<tr class="review-application-div">
<p>
There's a new leave request from {{.Name}}. Please check Unity for
There's a new leave request for the {{.Duration}} from {{.Name}}. Please check Unity for
more information.
</p>
<p>
<span><b>Date : </b></span><span class="title-span"> {{.Date}}</span
<span><b>Date : </b></span><span class="title-span"> {{.Date}} ({{.Duration}}) </span
><br />
<span><b>Status:</b></span>
<span class="title-span"> {{.StatusValue}}</span><br />
Expand Down
4 changes: 2 additions & 2 deletions templates/new-leave-email-template.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<tbody>
<tr class="review-application-div">
<p>
There's a new leave request from {{.Name}}. Please check Unity for
There's a new leave request for the {{.Duration}} from {{.Name}}. Please check Unity for
more information.
</p>
<p>
<span><b>Date : </b></span><span class="title-span"> {{.Date}}</span
<span><b>Date : </b></span><span class="title-span"> {{.Date}} ({{.Duration}}) </span
><br />
<span><b>Status:</b></span>
<span class="title-span"> {{.StatusValue}}</span><br />
Expand Down

0 comments on commit d69cd7d

Please sign in to comment.