Merge pull request #16186 from opf/merge-release/14.3-20240719033548

Merge release/14.3 into dev
This commit is contained in:
Dombi Attila
2024-07-19 14:27:24 +02:00
committed by GitHub
4 changed files with 8 additions and 6 deletions
+3 -3
View File
@@ -49,7 +49,7 @@ class Submenu
.where("starred" => "t")
.pluck(:id, :name)
.map { |id, name| menu_item(title: name, query_params: query_params(id)) }
.sort_by(&:title)
.sort_by { |item| item.title.downcase }
end
def default_queries
@@ -62,7 +62,7 @@ class Submenu
.where("public" => "t")
.pluck(:id, :name)
.map { |id, name| menu_item(title: name, query_params: query_params(id)) }
.sort_by(&:title)
.sort_by { |item| item.title.downcase }
end
def custom_queries
@@ -71,7 +71,7 @@ class Submenu
.where("public" => "f")
.pluck(:id, :name)
.map { |id, name| menu_item(title: name, query_params: query_params(id)) }
.sort_by(&:title)
.sort_by { |item| item.title.downcase }
end
def base_query
+2
View File
@@ -268,6 +268,8 @@ At the moment there are these ways to migrate:
- our [Excel sync](../system-admin-guide/integrations/excel-synchronization)
- Using a [Markdown export app](https://marketplace.atlassian.com/apps/1221351/markdown-exporter-for-confluence) you can export pages from Confluence and paste them (via copy & paste) into OpenProject in e.g. the wiki. This should preserve at least most of the layout. Attachments would then have to be added manually.
Our partners at [ALMToolbox](https://www.almtoolbox.com/) are happy to support you with Jira or Confluence migration.
For more information please contact us.
### How can I migrate from Community edition or Enterprise on-premises to Enterprise cloud?
+1 -1
View File
@@ -42,7 +42,7 @@ module Boards
.where(project: @project)
.pluck(:id, :name)
.map { |id, name| menu_item(title: name, query_params: query_params(id)) }
.sort_by(&:title)
.sort_by { |item| item.title.downcase }
end
def starred_queries
@@ -47,14 +47,14 @@ module CostReports
CostQuery.public(project)
.pluck(:id, :name)
.map { |id, name| menu_item(title: name, query_params: query_params(id)) }
.sort_by(&:title)
.sort_by { |item| item.title.downcase }
end
def custom_queries
CostQuery.private(project, User.current)
.pluck(:id, :name)
.map { |id, name| menu_item(title: name, query_params: query_params(id)) }
.sort_by(&:title)
.sort_by { |item| item.title.downcase }
end
def selected?(query_params)