-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Idea for an alternative or a method for Redmine 4.0.x? #6
Comments
Were you able to find anything? |
Yes, we managed it to adapt it. If the developer wants, I can upload the new version. |
I need this for Redmine 4.0 too. Could you please share it? Create a new Pull Request or Fork the original repo and commit your code there. |
Can You share the solution? |
Could You provide a version of Redmine which You use? I have a problem with 4.0.7 in "uninitialized constant RedcaseController" |
Redmine 4.03
Von: roykssopp <[email protected]>
Gesendet: Donnerstag, 9. Juli 2020 13:18
An: bugzinga/redcase <[email protected]>
Cc: dermitdemwolf <[email protected]>; Author <[email protected]>
Betreff: Re: [bugzinga/redcase] Idea for an alternative or a method for Redmine 4.0.x? (#6)
https://github.com/dermitdemwolf/redcase-redmine-4.0.x.git
Could You provide a version of Redmine which You use? I have a problem with 4.0.7 in "uninitialized constant RedcaseController"
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub <#6 (comment)> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/AKABS56XV5LPRNDHLYIIBELR2WRNBANCNFSM4HOBVKNA> . <https://github.com/notifications/beacon/AKABS52QU37OEJW7OZZTVBDR2WRNBA5CNFSM4HOBVKNKYY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOE4NM3WA.gif>
*** Out now! m€ins the new app of the OenB provides your complete financial picture in one place!
www.eurologisch.at ***
Wolfgang Thaler
Systemadministration / Quality Management
mobile +43 650 2015908 • e-mail [email protected]
NOUS Wissensmanagement GmbH
Ullmannstrasse 35, 1150 Vienna, Austria • phone +43 1 236 58 91-0
web www.nousdigital.com • facebook http://facebook.com/NOUS-Guide
NOUSguide Inc.
1368 26th Street, Denver, CO 80205, USA
NOUS Digital DMCC
J&G Plex 3S, Jumeirah Lake Towers, P.O.Box 379866, Dubai, UAE
|
Thanks, it works with redmine v4.1.1 with the fixes diff --git a/app/controllers/redcase/environments_controller.rb b/app/controllers/redcase/environments_controller.rb
index 8b97c5f..11b32bc 100644
--- a/app/controllers/redcase/environments_controller.rb
+++ b/app/controllers/redcase/environments_controller.rb
@@ -16,6 +16,7 @@ class Redcase::EnvironmentsController < ApplicationController
end
def create
+ params.permit!
environment = ExecutionEnvironment.new(params[:execution_environment])
environment.project_id = @project.id
environment.save
@@ -23,6 +24,7 @@ class Redcase::EnvironmentsController < ApplicationController
end
def update
+ params.permit!
environment = ExecutionEnvironment.find(params[:id])
environment.update_attributes params[:execution_environment]
if params[:execution_environment][:project_id]
@@ -34,6 +36,7 @@ class Redcase::EnvironmentsController < ApplicationController
end
def destroy
+ params.permit!
environment = ExecutionEnvironment.find(params[:id])
environment.destroy
# TODO: Properly handle the case when this fails. Which solve the issue of |
Hi, If @dermitdemwolf 's version works with Redmine 4+, maybe the changes could be merged here so as to advertise that the plugin is compatible with the most recent version of Redmine (today is says: Compatible with: Redmine 3.1.x, 3.0.x) ? |
I've forked the project, added the fix for environments_controller.rb and give some details in the README (Français and English) based on my experience with Redmine 4.2.0 Release : |
Hi, |
No I don't
…________________________________
From: ruslaan7 ***@***.***>
Sent: Thursday, August 11, 2022 5:53:16 PM
To: bugzinga/redcase ***@***.***>
Cc: Thibaut69 ***@***.***>; Comment ***@***.***>
Subject: Re: [bugzinga/redcase] Idea for an alternative or a method for Redmine 4.0.x? (#6)
Hi,
I want to install Redcase plugin on a fresh install of Redmine (5 version). Have you tried to update this plugin to that version?
Thanks.
—
Reply to this email directly, view it on GitHub<#6 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AECAZJU4H7JIFMBGLLWNCQLVYUOWZANCNFSM4HOBVKNA>.
You are receiving this because you commented.Message ID: ***@***.***>
|
Does anyone try installing this for Redmine 5? |
Hi, |
Hi, has anybody an idea for a method to integrate Redcase into Redmine 4.0.x?
Or maybe for a free alternative?
Thx!
The text was updated successfully, but these errors were encountered: