mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
Merge pull request #16186 from opf/merge-release/14.3-20240719033548
Merge release/14.3 into dev
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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?
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user