+
Need help?
+
For general help with data submissions, please contact <%= link_to "prds@princeton.edu", "mailto:prds@princeton.edu" %>
+
+
Who do I contact for assistance?
+
The research data repository has submission portals which are managed separately. You may contact the appropriate management point to request assistance.
+
+
Princeton Research Data Service (PRDS)
+
Provides submission access and curatorial services for the main collections of research data that are discoverable in this repository. Contact: <%= link_to "prds@princeton.edu", "mailto:prds@princeton.edu" %>.
+
+
Princeton Plasma Physics Laboratory (PPPL)
+
Provides submission access and assistance for the Princeton Plasma Physics Laboratory collections of research data that are discoverable in this repository. Contact: <%= link_to "publications@pppl.gov", "mailto:publications@pppl.gov" %>.
+
+
Globus Support
+
If you are experiencing issues accessing or uploading data in the Princeton Data Commons Globus endpoints, please open a ticket with Library IT by emailing <%= link_to "lsupport@princeton.edu", "mailto:lsupport@princeton.edu" %>. Library IT can provide support for Princeton Data Commons Globus issues during business hours, Monday through Friday, 9:00AM - 5:00PM Eastern Time, excluding University holidays. We will respond to support requests received outside of business hours on the next business day.
+
The Globus endpoints will occasionally need to be temporarily unavailable for scheduled or emergency maintenance. We will announce scheduled maintenance windows on the Princeton Data Commons homepage with as much advance notice as possible. In the case of emergency outages, we will also provide information and updates on the Princeton Data Commons homepage.
+
diff --git a/config/routes.rb b/config/routes.rb
index eddcf032c..1b54c691d 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -27,6 +27,7 @@
get "about", to: "welcome#about", as: :welcome_about
get "license", to: "welcome#license", as: :welcome_license
get "how-to-submit", to: "welcome#how_to_submit", as: :welcome_how_to_submit
+ get "help", to: "welcome#help", as: :help
# The wizard new submission controller (work wizard step 0)
get "works/:id/new-submission", to: "works_wizard_new_submission#new_submission", as: :work_create_new_submission
diff --git a/spec/views/welcome/help.html.erb_spec.rb b/spec/views/welcome/help.html.erb_spec.rb
new file mode 100644
index 000000000..84b16e845
--- /dev/null
+++ b/spec/views/welcome/help.html.erb_spec.rb
@@ -0,0 +1,10 @@
+# frozen_string_literal: true
+require "rails_helper"
+
+describe "/help", type: :system do
+ it "renders the Help page" do
+ visit "/help"
+ expect(page).to have_text("Need help?")
+ expect(page).to have_text("Who do I contact for assistance?")
+ end
+end