Search found 5 matches

by deggy
19 Sep 2019, 00:09
Forum: Help
Topic: Status changing to 'new' when a user adds a bugnote
Replies: 1
Views: 1888

Status changing to 'new' when a user adds a bugnote

Hi, The title says it all. Sometimes (not every time), when a user adds a bugnote to an issue with a status other then 10, the status will drop back to 10. I'm pretty familiar with the mantitbt code and configuration now as I've worked with it for a couple of months, but I have no idea why it might ...
by deggy
26 Aug 2019, 00:04
Forum: Customizations
Topic: Modifying a configuration string 'live'.
Replies: 3
Views: 5284

Re: Modifying a configuration string 'live'.

OK, thanks. That solution, I assume, makes that selection global for the period that the user is online (therefore, somebody else on another session will still not have emails sent in response to actions like bugnotes being updates). My solution currently sets a cookie on the user's machine. When th...
by deggy
23 Aug 2019, 06:13
Forum: Customizations
Topic: Modifying a configuration string 'live'.
Replies: 3
Views: 5284

Modifying a configuration string 'live'.

I'm working on a feature to allow emails to be easily turned on and off. As an administrator sometimes I need to carry out bulk updates that all team members are aware off - on these occasions I needed to be able to temporarily disable emails in an intuitive way without constantly going into the con...
by deggy
28 Jul 2019, 23:13
Forum: Help
Topic: Summarising subprojects
Replies: 3
Views: 2222

Re: Summarising subprojects

Thanks, That solution returns one-level down. If you have multiple-levels then it's useful to be able to return all the sub(sub(subprojects))). This query can be implemented with SQL 8 and above and returns a list of all sub-projects of a give project: with recursive cte(child_id, parent_id) as ( se...
by deggy
26 Jul 2019, 02:03
Forum: Help
Topic: Summarising subprojects
Replies: 3
Views: 2222

Summarising subprojects

Hello, I'm customising a mantis installation. We are managing issues using subprojects. This works great for the issue managers, but I need to give project managers a higher-level view. Basically, in the 'summary' page, at the moment the 'By Project' lines for projects which only have sub-projects a...