Redmine is a flexible project management web application written using Ruby on Rails framework.
Questions tagged [redmine-plugins]
377 questions
3
votes
0 answers
Integrate Redmine with Jenkins
How to integrate Redmine with Jenkins. My basic requirnment is to open ticket in redmine if the jenkins build get failed. I had added the Redmine Plugin from Jenkins and tried to use it. But getting error.
]2]2
Below are the checkpoints -
1. My…

nishant
- 89
- 1
- 2
- 9
3
votes
0 answers
Redmine changes user while logged, cookie changes
Sorry, this is not my mother language.
---setup:
We have a machine running Redmine with this versions:
Redmine - v2.6.10-3
Ruby -v2.1.9p490
Rake -v10.4.2
Rails -v4.2.5.1
Phusion Passenger -v5.0.6
MySQL -v5.6.30
Apache -v2.4.20
Sometimes, some users,…

Foo Bar
- 165
- 2
- 14
3
votes
2 answers
Redmine How to upload and download file inside plugin?
I am trying to create Redmine plugin and in that plugin i want to upload file or image and also display image or download file on show action. can anyone help me.
In Model
class UserInformation < ActiveRecord::Base
unloadable
belongs_to…

Nikhil Thombare
- 1,058
- 2
- 11
- 26
3
votes
1 answer
Document Mng on Redmine: Anyone use DMSF plugin or find an easy way to manage docs in the Files tab with a 'wiki' as a front end?
I'm looking to use Redmine for document management. I know that Redmine is not ideal for this task but there is already a lot of content on the site so I'd like to utilize it if possible.
Redmine currently does not a have great documents module. The…

user2905307
- 77
- 1
- 1
- 6
3
votes
3 answers
How to write test cases and test steps in redmine
I am working at a company that uses Redmine as the issue tracking tool and for user stories.
I need to design the QA for them. However I didn't find a section where someone can tie a user story or an issue with a test case. I've used to have this…

stelios.p
- 177
- 4
- 10
3
votes
1 answer
Enable Web services in Redmine
Can any one guide me how to enable web services in redmine, specially XML RPC. And a proper way to implement such web service in redmine.
Thanks.
Parthiv

Parthiv
- 1,010
- 1
- 8
- 19
3
votes
1 answer
Gitlab - update configuration for use with redmine and redeploy
I want to start using Redmine with Gitlab for issue tracking.
Is there a way to update the gitlab configuration (gitlab.yml) with the redmine urls and start using both applications without having to bundle Gitlab again?

Jose Almeida
- 108
- 2
- 9
3
votes
0 answers
redmine: time spent report including subtasks
Is there a Redmine plugin (or maybe core functionality which I don't know how to use) which allows me to get a time entries report which includes the subtask durations?
Eg, there are tasks in hierarchy like in asciiart below:
#1 - new module (time…

maho
- 128
- 6
3
votes
1 answer
Redmine Plugin: How to add Project Custom Field
I want to create a Project Custom Field in a plugin. Although running "rake redmine:plugins:migrate RAILS_ENV=production" appears to apply the migration, the project custom field is not created. Here is the migration:
Update: (can't answer my own…

user2743331
- 31
- 4
3
votes
1 answer
Redmine-PlugIn development: helper method not found in view
I'm writing a plugin for redmine and there is one thing i just don't get:
I have a helpermodule called approvals_helper.rb which contains a method 'rev_approved?'
module ApprovalsHelper
def rev_approved?(repository, revision)
# return…

A.L.
- 129
- 1
- 7
3
votes
2 answers
Redmine: check if the user has a specific privilege
Trying to write a plug-in for which I need to check if the user has a particular permission .
For example
I am thinking of something like this
if (user.current has "view_private_notes" )
do something
end

born
- 265
- 3
- 18
3
votes
1 answer
Redmine: Custom filter field for adding News
I'd like to add a custom filter field to "Add News" page in Redmine,
so that when I add a new news I could select group of users the email should be sent to.
The field itself is a list of Redmine User groups and every user is assigned to at least 1…

WooDzu
- 4,771
- 6
- 31
- 61
3
votes
1 answer
Redmine custom fields on Projects page
I have recently setup Redmine and really like it. However, a feature which I really want is to set up Project completion in a percentage type facility (such as 5% 10% etc.) which is editable simply by the developer, not automated.
I know that you…

Nick White
- 1,602
- 4
- 20
- 35
3
votes
1 answer
ActionMailer Error in Redmine Plugin
I have the following mailing code in app/models.
class Mailman < ActionMailer::Base
default :from => "xyz"
# Sends an Email reminder to all the users who missed a pickup date
def check_out_reminder(reservation)
recipient =…

Nitish Upreti
- 6,312
- 9
- 50
- 92
3
votes
1 answer
Redmine plugin development
I am trying to create a message plugin for Redmine. I have couple of doubts regarding this
How could I send the email in Redmine plugin? Is it possible to
create the mailer inside the plugin? If so what is the command for
creating mailer?
I can…

Karthi Ponnusamy
- 2,031
- 2
- 25
- 41