diff --git a/app/controllers/integrations_controller.rb b/app/controllers/integrations_controller.rb index dcab4e9d..a4fa3c67 100644 --- a/app/controllers/integrations_controller.rb +++ b/app/controllers/integrations_controller.rb @@ -12,6 +12,10 @@ class IntegrationsController < ApplicationController @page_title = 'TRACKS::REST API Documentation' end + def help + @page_title = 'TRACKS::Help' + end + def search_plugin @icon_data = [File.open(File.join(Rails.root, 'app', 'assets', 'images', 'done.png')).read]. pack('m').gsub(/\n/, '') diff --git a/app/views/integrations/help.html.erb b/app/views/integrations/help.html.erb new file mode 100644 index 00000000..5cd0fca6 --- /dev/null +++ b/app/views/integrations/help.html.erb @@ -0,0 +1,13 @@ +
You can find information on the usage in the User manual in the project GitHub wiki.
+ +If you encounter a bug or have a feature request, please report it in the issue queue.
+ +We gladly welcome all contributions to Tracks. Check the project website for further information. You can also come discuss with the community:
+ + diff --git a/app/views/shared/_navbar.html.erb b/app/views/shared/_navbar.html.erb index a5661f8e..709670c5 100644 --- a/app/views/shared/_navbar.html.erb +++ b/app/views/shared/_navbar.html.erb @@ -51,6 +51,7 @@ <%= t('layouts.navigation.help') %> diff --git a/config/locales/en.yml b/config/locales/en.yml index 624b41a7..a953c51a 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -401,6 +401,7 @@ en: import_title: Import data preferences: Preferences integrations_: Integrate Tracks + help_page: Help feeds_title: See a list of available feeds calendar_title: Calendar of due actions completed_tasks: Done diff --git a/config/routes.rb b/config/routes.rb index c35f7991..79d5d5c6 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -25,6 +25,7 @@ Rails.application.routes.draw do get 'data/xml_export' => 'data#xml_export' get 'data/csv_actions' => 'data#csv_actions' + get 'help' => "integrations#help" get 'integrations' => "integrations#index" get 'integrations/rest_api' => "integrations#rest_api", :as => 'rest_api_docs' post 'integrations/cloudmailin' => 'integrations#cloudmailin'