Skip to content
Snippets Groups Projects
  1. Apr 05, 2019
    • aydreeihn's avatar
      FAQ Issues · ce3d69ae
      aydreeihn authored
      This commit fixes several issues with how we manage FAQs and related objects.
      
      1. When trying to add a Help Topic to an FAQ, we should add the record to the faq_topic table after saving the faq so that we can accurately retrieve the faq_id
      
      2. When deleting a Help Topic, we need to make sure we're using the topic->delete function rather than deleting based on a QuerySet so that the related FAQ Topics will also be deleted.
      
      3. When deleting a FAQ Category, we need to ensure that we delete all related FAQs and FAQ Topics. To do this, we should use the delete function from the FAQ class first to delete all related FAQs and FAQ Topics and then we should use the Category delete function to delete the remaining Category (remove faqs->expunge from the category->delete function since it we now pass through faq->delete as well)
      ce3d69ae
  2. Feb 06, 2019
  3. Feb 05, 2019
  4. Feb 04, 2019
    • JediKev's avatar
      issue: Translation Flags Not Clickable · 937fc5ce
      JediKev authored
      This addresses an issue where the second row of translation flags are not
      clickable when editing a Form with 23+ languages installed. This adds a
      `height` of "auto" so that the entire div fits the flags’ surface area,
      making them clickable again.
      937fc5ce
  5. Jan 31, 2019
  6. Jan 23, 2019
  7. Jan 17, 2019
    • JediKev's avatar
      issue: Hide Task Loading Overlay · 786653ef
      JediKev authored
      This addresses an issue where the Loading overlay on Tasks will not
      disappear after the request was submitted. This adds two lines to first hide
      the "Loading" modal and then toggle the overlay.
      786653ef
  8. Jan 07, 2019
  9. Jan 03, 2019
    • aydreeihn's avatar
      Issue: Tasks Within Tickets · 85f42422
      aydreeihn authored
      This commit addresses issues we had with viewing Task(s) within a Ticket:
      
      1. When viewing the table of all Tasks on a Ticket, the Options dropdown should only allow the Agent to Reopen or Close the Tasks based on the status of the Tasks.
      Ex: If there is only 1 Open Task, you should only see the 'Close' Option
          If there are 2 Closed Tasks, you should only see the 'Reopen' Option
          If there are multiple Tasks in which some are Open and some are Closed, you should see both the 'Reopen' and 'Close' options
      
      2. When viewing an individual Task within a Ticket, the status options were the opposite of what they should have been. Now, if the Task is Open, the Agent will see the option to 'Close' the Task. If the Task is Closded, the Agent will see the option to 'Reopen' the Task.
      85f42422
  10. Jan 02, 2019
    • JediKev's avatar
      issue: Dashboard Export Period · b951032c
      JediKev authored
      This addresses an issue where exporting statistics via the dashboard within
      a certain timeframe (eg. 07/01/2018 -> One Quarter) will always export the
      statistics from the selected date up to today. This is due to the Period
      option always being set to "Up to today" when the Export button is clicked
      which in return exports the stats from the selected start date to today.
      This adds JS to set the period the Agent selects so the Export will return
      the stats from the selected date to the selected period.
      b951032c
  11. Dec 10, 2018
  12. Nov 07, 2018
  13. Nov 06, 2018
    • JediKev's avatar
      oops: Remove DST From User Update · 10e7c422
      JediKev authored
      This addresses an issue where Users updating their profile will throw an SQL
      error in the system logs. This is due to a line of code trying to set a
      value for the `dst` column which no longer exists as of `1.10.0`.
      10e7c422
  14. Oct 24, 2018
    • Peter Rotich's avatar
      Merge pull request #4568 from JediKev/issue/dupe-page-requests-fix · 1d05ff15
      Peter Rotich authored
      issue: Dupe Page Requests Fix
      1d05ff15
    • JediKev's avatar
      issue: Dupe Page Requests Fix · 45ec0350
      JediKev authored
      This addresses an issue with pull 4472 where disabling the Submit button
      does not submit the Input value for the button. This affects the
      installation of plugins, where the Install Path is not sent therefore the
      plugin is not installed. This clones the original submit button, hides it,
      then displays a dummy disabled Submit button which will submit the value and
      prevent dupe posts.
      45ec0350
  15. Sep 22, 2018
  16. Sep 17, 2018
  17. Sep 14, 2018
  18. Sep 06, 2018
  19. Sep 05, 2018
  20. Aug 29, 2018
  21. Aug 27, 2018
  22. Aug 24, 2018
  23. Aug 23, 2018
    • JediKev's avatar
      forms: Disabled By Help Topic Users · 0780eb7d
      JediKev authored
      This addresses issue 4470 where Users creating tickets via Client Portal and
      failing to fill out a required field makes disabled fields by Help Topic
      appear on the page. When the disabled fields appear they allow Users to
      populate and save data that they were not meant to submit.
      0780eb7d
  24. Aug 22, 2018
    • JediKev's avatar
      issue: CDATA Phone Contains · e9214c2e
      JediKev authored
      This addresses an issue where people who do not have a phone field on the
      contact information form go to search for a User in the User Directory and
      the system crashes. This is due to the search query that always contains the
      phone field variable. This only adds the phone variable to the search query
      if the field actually exists.
      e9214c2e
Loading