Project

General

Profile

Search

Results (17899)

Open discussion: RE: How to access last note of an issue
This thread was so helpful with helping me co ... nce-certificate-from-a-qualified-electrician/ 2024-04-25 15:58
Help: RE: Problem Installing Redmine 5.1.2
To fix the issue: cd /usr/share/gems/gems/ox-2.14.18/ext/ox && make && cp -a ox.so ../../lib/ 2024-04-25 04:26
Open discussion: RE: Using repositories with redmine
Hi Martin, maybe its important to clarify ... upload files. One can link existing files in issues and wiki pages but for the most part that's ... ts history, look at changes and link them to issues. But there's no possibility to modify the repository in Redmine directly. Greetings, Bernhard 2024-04-23 11:24
Open discussion: Problem using prebuilt redmine:5.1.2 containers
Hi everybody, I have been using prebuilt r ... iffent version for some time now without any issue. Now, with the upgrade from mysql 5.7 to 8. ... ? How can I fix this? Kind Regards Frank 2024-04-22 19:11
Development: RE: Creating issues does not work after upgrading Redmine to version 5.0.5
check plugins 2024-04-22 10:38
Help: RE: Tracker hierarchy (parent, subtask, ... played consistently, esp. when parent changes
as a note, i believe the indent in the issues list only happens when it is ordered in tha ... ere the children come right after the parent. 2024-04-22 10:32
Development: Redmine Ticket Body UI customization
I want to customize Redmine. Specifically, when I create an issue in my custom Redmine instance, I'd like to d ... of the particular project in the ticket body. 2024-04-22 09:47
Open discussion: RE: Issue creation by email
tien trung vu wrote: > Hello, > I followed ... ects/redmine/wiki/RedmineReceivingEmails for issue create, it's works but i want to ask : > How can it stop create issue when someone reply that email, it will create a duplicate issue on system ? > > Thanks Hi I am Ankit, ... ase guide me to create ticket using mail. 2024-04-22 07:25
Open discussion: RE: Issue creation by email
Bernhard Rohloff wrote in message#58455: > The right answer is, you can't. Redmine creates a new issue for every new email it receives. > What you ... please guide me to create ticket using mail. 2024-04-22 07:24
Help: Problem Installing Redmine 5.1.2
Hello, I've been running Redmine 5.0.3 on ... cret_token". Any advice on resolving this issue would be greatly appreciated! Thanks, Ma ... ee full trace by running task with --trace) 2024-04-20 07:18
Help: Tracker hierarchy (parent, subtask, nes ... played consistently, esp. when parent changes
We recently upgraded from 4.x and I liked the new '>' for subtasks in issue list and tracker view itself, BUT it seems t ... onsistently rendered with the '>' nesting in issue lists. Perhaps the same mechanism is involv ... !clipboard-202404191055-ehckx.png! Thanks! 2024-04-19 16:57
Open discussion: RE: Atom key(rss key) doesn't have api endpoint
Hi David, Thanks for the response. The ato ... est. *The RSS atom feed is available via /issues.atom?key=ID or /projects.atom?key=ID* - Here, I don't know the key then how to call the request 2024-04-19 10:31
Open discussion: RE: Atom key(rss key) doesn't have api endpoint
You will be able to generate the Atom key from /my/account The RSS atom feed is available via /issues.atom?key=ID or /projects.atom?key=ID David - https://redminepro.com/ 2024-04-19 09:32
Open discussion: RE: How to access last note of an issue
r vig wrote: > Hello, > I am using Redmine ... reSQL database. > I have now access to the issue of my project thanks to the table public.issue. > > I would like to have access to the last note of the issues but I can't find which table I have to use. ... I to Redmine. To access the last note of the issues, you should look into the ‘journals’ table. The notes for Redmine issues are stored there. You can retrieve the last note for each issue by filtering for entries where the ‘journalized_type’ column is ‘Issue’ and the ‘notes’ column is not null, then or ... * FROM journals WHERE journalized_type = 'Issue' AND notes IS NOT NULL ORDER BY created_on ... s query will give you the latest note for an issue. If you need the last note for each issue, you might need a more complex query that groups the results by ... 2024-04-19 08:52
Open discussion: RE: How to access last note of an issue
To access the last note of Redmine issues for a Power BI report, query the public.journals table joined with public.issues using issue_id. Filter journals by journalized_type as 'Issue' and aggregate using @MAX(created_on)@ and @MAX(notes)@ to get the latest note per issue. Adjust the SQL query to match your database schema and test before using in Power BI. 2024-04-18 11:16
Help: RE: Thousands separator for custom fields
It looks like it will be fixed in version 6: https://www.redmine.org/issues/22024#note-18 2024-04-18 01:29
Help: RE: thousands separator
It looks like it will be fixed in version 6: https://www.redmine.org/issues/22024#note-18 2024-04-18 01:28
Open discussion: RE: Feature to Group Custom Fields by Category
There hasn't been any progress on this issue, and I'm running short on time to actually i ... erve as a foundation for further discussions. 2024-04-17 08:40
Help: RE: Visibility of projects in issues
I think I saw this issue once in one of the issues. But I went through the subtasks on my cu ... project to any other. Full list was available 2024-04-15 22:26
Help: RE: user_id in api issues
You have plenty of paging examples in the API ... //www.redmine.org/projects/redmine/wiki/Rest_Issues <pre> GET /issues.xml GET /issues.xml?issue_id=1 GET /issues.xml?issue_id=1,2 GET /issues.xml?project_id=2 GET /issues.xml?project_id=2&tracker_id=1 GET /issues.xml?assigned_to_id=6 GET /issues.xml?assigned_to_id=me GET /issues.xml?status_id=closed GET /issues.xml?status_id=* GET /issues.xml?cf_1=abcdef GET /issues.xml?sort=category:desc,updated_on Paging example: GET /issues.xml?offset=0&limit=100 GET /issues.xml?offset=100&limit=100 To fetch ... 2024-04-10 17:21
Help: RE: user_id in api issues
In that case, the query key is @updated_by@. This will return issues where you (or the selected user) has perfor ... there are any journals authored by the user. 2024-04-10 15:08
Help: RE: user_id in api issues
but I wanted it to return the Issues that I updated at some point and not the ones I created. 2024-04-10 14:10
Help: RE: user_id in api issues
The query parameter to filter by author is @a ... our URL should thus be: https://myredmine/issues.json?key=mykey&from=2023-02-01&to=2023-12-31&author_id=me 2024-04-08 20:37
Help: user_id in api issues
When I try to check the issues that have had an update from my user, it returns the issues for all users. https://myredmine/issues.json?key=mykey&from=2023-02-01&to=2023-12-3 ... ggestions on how to get it from just my user? 2024-04-08 15:45
Help: Visibility of projects in issues
Hello everyone. I have a question about the visibility of projects in issues. Why, when I have the same role in one subproject, when I edit an issue, do I see only some of the subprojects, and ... pecific options for choosing to transfer the issue to other subprojects, and I've probably chec ... bug with the current version? Please help. 2024-04-08 14:30
(1-25/17899)