Project

General

Profile

Search

Results (18215)

Help: RE: Rights to change the status in tasks
You can configure the permissions to change an issue from one status to another as well as the ab ... transitions as well as the field permissions. 2023-08-28 20:10
Open discussion: RE: How to raise an error from controller_issues_edit_before_save hook?
Thanks for your reply, but I must admit that ... he hook, whenever a @MyError@ is raised, the issue shall not be saved, but an error message sim ... ove the edit form. Thanks again, Albrecht. 2023-08-22 21:25
Open discussion: RE: How to raise an error from controller_issues_edit_before_save hook?
Reach out to the administration panel for raising the error. 2023-08-22 09:57
Open discussion: How to raise an error from controller_issues_edit_before_save hook?
I wrote a plugin which shall in the @controller_issues_edit_before_save@ hook apply some modifications to the issue depending upon its properties, and perform s ... etc.) in the red box in the UI, blocking the issue changes from being saved. The following s ... mine::Hook::ViewListener def controller_issues_edit_before_save(context = {}) issue = context[:issue] begin # the following funct ... ise MyExtension::Errors::MyError... issue.my_modifications_an_checks rescue MyE ... rly here... Rails.logger.info "# my issue sanity check failed with #{e.message}" ... ay the error in the UI and cancel saving the issue at this point? end end end e ... appreciated! Thanks in advance, Albrecht. 2023-08-21 19:31
Help: show assignee avatar
Hi, there used to be a plugin that would put the avatar of the issue's assigned user next to the title instead of ... t. https://github.com/two-pack/redmine_show_issue_assignee_avatar We did this in RedMine 4.2. ... do this in redmine 5.0.5 ? Best regards 2023-08-21 15:59
Open discussion: RE: Problem to access "Settings" from Administration menu
after installing DMS plugin Same issue here, can anyone help? 2023-08-21 14:40
Open discussion: RE: Redmine > time_entries slow, very slow! (timeout!!)
We resolved with this patch: https://www.redmine.org/issues/33431 The migration was successfully. 2023-08-18 08:57
Open discussion: RE: Demo Request
There is no official Redmine demo anymore. Se ... .g. https://www.redmine.org/projects/redmine/issues And a couple of unofficial demos I could ... plugin but it also works as a Redmine demo. 2023-08-18 06:46
Help: Custom tab in issues
Hi all, I am setting up a Bot which would add notifications (as notes or comments) in Redmine issues using the API. As there can be lots of the ... ications, I would like to filter them out in issues history. What would be the best way to achieve this? # Using a custom tab in issues with a new type of notes: is there a plugin for this? !Issue-custom-tab-Redmine.png! # Something else? Thanks! 2023-08-17 14:24
Help: Docker redmine instance intermittently returns error 500
Hello. I am hosting a docker container of ... times it starts working again. Sometimes the issue doesn’t come up. There’s nothing configured ... for any obvious mistakes, i’m new to redmine. 2023-08-10 05:20
Help: Unable to change Priority on some tasks
Hello everyone. I have a problem with changin ... g tasks and they're all granted correctly at Issue Tracking. From what I understood after sea ... 1.5.1 redmine_checklists 3.1.5 2023-08-09 09:22
Help: RE: How to set "assignee" as a required filed
Oops,When I set five times more,it works! It might redmine issue 2023-08-02 09:40
Help: RE: How to set "assignee" as a required filed
Thanks for your reply. I try your method lik ... -202308021532-8ooq7.png! However,when I new issue,it doesn't set "assignee" as a required field !clipboard-202308021534-ghvn7.png! 2023-08-02 09:35
Open discussion: RE: Default My Page layout for new users
Hello, I have some write this you can read ... codebase directly may lead to compatibility issues with future updates, so consider the long-t ... who are familiar with Redmine customization. 2023-08-01 11:17
Development: RE: REST API Error in Xamarin Forms .NET
Владимир Косякин wrote: > When connecting to ... s in the RedMine API itself, network-related issues, or updates to the Android operating system ... ed. Checking for version mismatches or known issues in those libraries could be helpful. To pinpoint the exact cause of the issue, detailed logs and debugging in the Android ... hope the information may helps you. 2023-08-01 08:08
Help: RE: How to choose colors in function of the priority
I answered in your GitHub question: https://github.com/mrliptontea/PurpleMine2/issues/265#issuecomment-1651057822 2023-07-26 08:29
Help: RE: How to choose colors in function of the priority
Guillermo ML wrote in message#53960: > We ar ... mine 3.3.1, and as Bernhard Rohloff said the issue number is colored depending on the tracker, ... e background color by different priority? My issues are all the same 2023-07-26 05:00
Help: RE: Migrating from Redmine 1.1.3 to Redmine 4.2.1
You should be able to migrate your existing d ... ther old and contains several known security issues. See https://plan.io/redmine-security-scann ... ven better to the latest version 5.0.5. 2023-07-25 15:53
Help: RE: Modify default start date in Gantt Chart
A F wrote in message#68636: > The code would ... em to be changing is the timeframe for which issues are fetched from the DB, not the timeframe ... display, for example the user's preferences. 2023-07-23 16:03
Help: RE: Reopen issue by mail - plugin for 4.0.6?
Hi, I found your post upon searching the i ... ps://github.com/openSUSE-Team/redmine-reopen-issues-by-mail/pull/3. 2023-07-23 04:09
Open discussion: RE: Select2 search box for assignee and custom (list) fields?
Looks like a bug in jQuery 3.6.0 https://github.com/select2/select2/issues/5993 Would be great to fix that issue by upgrade jQuery to 3.7 Used autocomplet ... b.com/asannou/redmine-selectbox-autocompleter 2023-07-13 09:10
Open discussion: Select2 search box for assignee and custom (list) fields?
Hi, upgrading from redmine 3 core includes ... le to add autocomplete / select2 features to issue fields too? Regards 2023-07-13 08:13
Help: RE: Access API through a url with domain
Hi, you can use the API URL as follow, in my ... http://my_site/projects/project_identifier/issues?key=place_your_api_here </code></pre> 2023-07-08 07:42
Help: RE: Modify default start date in Gantt Chart
Update: This is my updated file. The only pr ... e></pre> Obtaining the string of the oldest issue. Note: I assume the format given for the date is the same as issues "01/01/2023". After that, the idea is to ... ef initialize(options={}) # Returns issues that will be rendered def issues @issues ||= @query.issues( :order => ["#{Project.table_name}.lft ASC", "#{Issue.table_name}.id ASC"], :limit => ... ) end def sort_issue_logic(issue) julian_date = Date.new ancesters_start_date = [] current_issue = issue begin ancesters_start_date.unshift([current_issue... 2023-07-07 09:12
Help: Access API through a url with domain
I'm pretty new and I'm trying to access API t ... rtificate verify failed: unable to get local issuer certificate (_ssl.c:1002) This leads me to ... to specify something? Could you guide me? 2023-07-06 17:22
(576-600/18215)