Search
Results (18336)
- Help: RE: Issue Header format
- Ref: #23712. Please contact plugin author.
- Iam using Redmine version 3.1.0.stable. In that Issue Header format got disturbed.screenshot attached. need help to resolve it.
- Dear all, As you can see in the attached image I create a filter to filtering the issues by tracker but the project name display on ... roject name on multiline. Thank you, Tuan
- Help: RE: Filtering a custom query in a self-made plugin
- And of course one should use paramerized quer ... ction: <pre><code class="ruby"> @query = IssueQuery.new(:name => "_") @query.project = @pr ... @query.build_from_params(params) end @issues = Issues.select("custom_values.value AS cv, count(*) ... ield_id AS cfi") .joins("JOIN projects ON issues.project_id = projects.id LEFT JOIN custom_values ON custom_values.customized_type = 'Issue' AND issues.id = custom_values.customized_id") .wher ... ).group("custom_values.value") </code></pre>
- Help: RE: Filtering a custom query in a self-made plugin
- Found it! <pre><code class="ruby"> @query = IssueQuery.new(:name => "_") @query.project = @pr ... @query.build_from_params(params) end @issues = Issues.select("custom_values.value AS cv, count(*) ... ield_id AS cfi") .joins("JOIN projects ON issues.project_id = projects.id LEFT JOIN custom_values ON custom_values.customized_type = 'Issue' AND issues.id = custom_values.customized_id") .wher ... ld already be included in @query.statement.
- Plugins: RE: How to change landing page via plugin in Redmine 3.2.3 ?
- Hello! I’m interested this feature to overwr ... es :welcome end match '/', :to => 'issues#index', :via => [:get] end Redmine: ... > 'Hjem'} end </code></pre> How about?
- Hello thete people I am struggling to ins ... if it is possible to remind people about an issue on an hourly basis. so lets say after a tick ... it? best regards and thank you in advance
- Open discussion: RE: How to restore the deleted issue?
- Same stuff, only difference is that I had email notification configured. Still quite an issue.
- Hi! I would like to make a pie chart that shows the ratio of issues that have a specific custom field set. For ... e following statement in the controller: @issues = Issues.select("custom_values.value AS cv, count(*) ... ield_id AS cfi") .joins("JOIN projects ON issues.project_id = projects.id LEFT JOIN custom_values ON custom_values.customized_type = 'Issue' AND issues.id = custom_values.customized_id") .wher ... {@listId}'").group("custom_values.value") Issues is a subclass of ActiveRecord::Base. This a ... e one does when using the gantt chart or the issue list. I figured out how to render the filter ... ing a custom made build_from_params * using IssueQuery instead of my own model "Issues" and apply select, join,... and build_from_ ... mebody help me on this? Regards, Stefan
- Hello In a issue, by default, it's display all sub task of issue. In most of case, it a good think. Sometime, for some issue with many sub task, I want to filter sub tas ... sible to do this ? Best regard Emmanuel
- Help: RE: ERROR: bundle install
- Permissions is 664... But I found that the issue was related to the fact that postgres db was ... e generate_secret_token And it worked...
- Help: RE: Difference betweek links and sub-tasks between issues
- Anyone?
- To what I see, linked tasks is only a reference to another issue. And sub-task are truely linked and definin ... s and estimate+accounting time in the parent issue, like if they were part of a project. I am right?
- Hi, I am trying to count custom field valu ... (for testing): <pre><code class="ruby"> Issue.visible.joins(:status, :project).where(state ... ues(2)) (but this doesn't work of course)
- Help: RE: rake db:migrate after ubuntu upgrade
- I don't know - I am no expert with ruby and r ... but that the required ruby can not be found. Issue @ruby -v@ and @which ruby@ to be sure your r ... ne@server:~/redmine/log$ </pre> Immanuel.
- Open discussion: RE: Notify per issue non-user email address(es)
- Pall Bjornsson wrote: > Using Redmine 3.2.0 > > I need to be able to send issue notifications to email addresses that do not ... system. > > Basically, I would need a per issue custom field to enter a list of email addres ... l addresses of random clients) related to an issue and on status updates of that issue. Did you ever find a solution Pall? Regards
- Open discussion: RE: Control Redmine from the command line
- You can use https://albfan.github.io/Redmi ... I'm using it on daily basis: - list my issues - see issue details: journals, time entries - change issue status - add issue comments, private too. - list time-entries, ... https://github.com/albfan/RedmineJavaCLI/issues/2 Solving this could be a great project, ... that returns to terminal, as it should be.
- Plugins: RE: Import Issues in Redmine 2.4.3
- J BS wrote: > Hello, > > I'm pretty new to REDMINE and I wonder how a list of issues can be imported into Redmine. > I found di ... a plugin "redmine_importer" > I know this issue has been discused a lot. I found many topic ... e:plugins:migrate RAILS_ENV=production" again
- Hi there. First om all I am not a Ruby (o ... ources :welcome end match '/', :to => 'issues#index', :as => 'home', :via => [:get] ma ... come#index', :via => [:get] #root :to => 'issues#index', :via => :get, :as => 'home' end ... e> Also, only specifying -> *root :to => 'issues#index', :via => :get, :as => 'home'* doesn' ... Application.routes.prepend do root :to => 'issues#index', :via => :get, :as => 'home' end </code></pre> Any ideas? Thanks.
- According to Feature #992 restricting search to open or closed issues should be available as of Redmine 3.0.0. Bu ... nderstood #992)? Thanks a lot Immanuel.
- hello there im configuring the email.rake file to enable emails with redmine and im having some issues to configue it. does someone have an exa ... ult: INBOX) thank your for help in advance
- Hello, everyone! I need your help here. ... some projects and every project has its own issue categories. We have specifics roles in th ... one (a user, of course), deleted most of the issue categories of one specific project. The cate ... t is this: Is there a way to see who deleted issues categories from a project? I don't know if ... could offer me. Thank you! Best regards!
- Hello. How can I add "Project name" here ... parameters like status, priority and so on.
- Help: RE: how to use multi-fields search for issues in REST api?
- I found this combination of params to work: <pre><code class="java"> public void issuesCanBeFoundByMultiQuerySearch() throws RedmineException { final Issue issue1 = IssueFactory.create(projectId, "summary 1 here"); issueManager.createIssue(issue1); final Issue issue2 = IssueFactory.create(projectId, "summary 2 here"); issueManager.createIssue(issue2); final Issue issue3 = IssueFactory.create(projectId, "another"); issue...
- Hi, I have Project A and Project B. B is a ... can't see this version in B. After I add an issue to B with that version I can finally see the ... there all tickets with the version. Thanks