Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page stores the frequently asked questions with regard to the add-on. For ideas and feedback, please submit them through the add-on's Jira project to facilitate tracking. Thank you.

...

  • Why not all the projects are listed in the project dropdown 

    Panel

    The Out-of-Office Assistant only display the projects when the user has assignable permissions.


  • Can I help my colleague to set Out of Office? 

    Panel

    This feature is being planned for subsequent versionsFrom v.2.1.0, it is now possible for Jira administrator to set OOO rules on behalf of users who are not around.


  • How to I set a rule for all my projects 

    Panel

    From  From v1.4.0, there is a "All other projects" option added. However you have to ensure that the coverer can be assigned to all the projects


  • I want to know the total number of Out-of-Office rules created and the number of unique users creating such rules


  • Panel

    Retrieve these information from your database from the Out Of Office Rules Table

    e.g. Total number of Out of Office Rules created 

    Code Block
    mysql> select * from AO_86B55C_OUT_OF_OFFICE_RULES 
    +----------+ 
    | COUNT(*) | 
    +----------+ 
    | 35       | 
    +----------+


    e.g Number of users creating Out of Office Rules
    Code Block
    mysql> SELECT COUNT(distinct assignee) from AO_86B55C_OUT_OF_OFFICE_RULES;
    +--------------------------+
    | COUNT(distinct assignee) |
    +--------------------------+
    |                        8 |
    +--------------------------+


...