feat: add jira filter url per participant and meeting jira url
This commit is contained in:
@@ -117,9 +117,10 @@ func (s *Storage) CreateParticipant(p *models.Participant) error {
|
||||
|
||||
func (s *Storage) UpdateParticipant(p *models.Participant) error {
|
||||
return s.db.Model(&models.Participant{}).Where("id = ?", p.ID).Updates(map[string]interface{}{
|
||||
"name": p.Name,
|
||||
"email": p.Email,
|
||||
"time_limit": p.TimeLimit,
|
||||
"name": p.Name,
|
||||
"email": p.Email,
|
||||
"jira_filter": p.JiraFilter,
|
||||
"time_limit": p.TimeLimit,
|
||||
}).Error
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user