Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

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 

    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? 

    From 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 

    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

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

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

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


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


  • No labels