Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanjeev Papnoi committed Aug 23, 2021
1 parent ed65af8 commit 0746229
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG-1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@ CHANGELOG for 1.0.x
===================

This changelog references any relevant changes introduced in 1.0 minor versions.

* 1.0.16 (2021-08-23)
* **Misc. Updates:**
* **Flash Mesaage with a warning if swiftmailer is not setup or working with ticket create process**
* **Save password with encryption in swiftmailer.yaml for security**
* **Time stamp format correction for agent as well as for customer.**

* **Bug Fixes:**
* **Issue #383:** getting exception when filter kudos based on customer group
* **Issue #384:** broken image on kudos customer filter.
* **Issue #385:** customer image should be visible along with customer name in kudos grid.
* **Issue #386:** Collaborator name is coming wrong on ticket thread at agent ticket view.
* **Issue #387:** Collaborator on email is coming wrong format.
* **Issue #388:** Users Image not displaying properly in Group and Team Section.
* **Issue #392:** Gmail Replies from admin gmail is not added in ticket thread of admin panel.
* **Issue #393:** Email format is not properly showing in CC and BCC Email.
* **Issue #394:** In Customer and Collaborator dashboard image not displaying of Admin Image.
* **Issue #396:** Agent Activity is not working properly from agent side.
* **Issue #397:** Translation is not showing properly in it(italian) language admin website and agent side view.
* **Issue #399:** Reply from collaborator gmail so collaborator name is not showing.
* **Issue #403:** Remove from customer side image so default image not showing in Tickets thread.
* **Issue #405:** Reply from Customer Side also added CC and BCC mails So Not going to mail CC and BCC mail id's.

* 1.0.15 (2021-08-21)
* **Misc. Updates:**
* **Flash Mesaage with a warning if swiftmailer is not setup or working with ticket create process**
Expand Down
2 changes: 1 addition & 1 deletion Resources/views/dashboard.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
{{ uvdesk_extensibles.getRegisteredComponent('Webkul\\UVDesk\\CoreFrameworkBundle\\Dashboard\\Dashboard').getHomepageTemplate().render()|raw }}

<div class="uv-copyright">
<span class="uv-credit-text">{{ 'Powered by'|trans }} <a href="https://www.uvdesk.com" target="_blank">UVdesk</a></span> | <span class="uv-credit-text">V -1.0.15</span>
<span class="uv-credit-text">{{ 'Powered by'|trans }} <a href="https://www.uvdesk.com" target="_blank">UVdesk</a></span> | <span class="uv-credit-text">V -1.0.16</span>
</div>
</div>
{% endblock %}
Expand Down
4 changes: 2 additions & 2 deletions Services/ReportService.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ public function addPermissionFilter($qb, $container, $haveJoin = true)
switch ($userInstance->getTicketAccesslevel()) {
case self::TICKET_GROUP_ACCESS:
$qb
->andWhere("t.agent = :agentId OR supportGroup.id IN(:supportGroupIds) OR supportTeam.id IN(:supportTeamIds)")
->andWhere("t.agent = :agentId OR gr.id IN(:supportGroupIds) OR tSub.id IN(:supportTeamIds)")
->setParameter('agentId', $activeUser->getId())
->setParameter('supportGroupIds', $qualifiedGroups)
->setParameter('supportTeamIds', $qualifiedTeams);
break;
case self::TICKET_TEAM_ACCESS:
$qb
->andWhere("t.agent = :agentId OR supportTeam.id IN(:supportTeamIds)")
->andWhere("t.agent = :agentId OR tSub.id IN(:supportTeamIds)")
->setParameter('agentId', $activeUser->getId())
->setParameter('supportTeamIds', $qualifiedTeams);
break;
Expand Down

0 comments on commit 0746229

Please sign in to comment.