-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add new Need Help page * Add text for new Help page * Add email links for Help page * Adds test for Help page
- Loading branch information
1 parent
044f24e
commit 49aeb09
Showing
5 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ class WelcomeController < ApplicationController | |
def index; end | ||
def about; end | ||
def license; end | ||
def help; end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<div> | ||
<h2><strong>Need help?</strong></h2> | ||
<p>For general help with data submissions, please contact <%= link_to "[email protected]", "mailto:[email protected]" %></p> | ||
|
||
<h2><strong>Who do I contact for assistance?</strong></h2> | ||
<p>The research data repository has submission portals which are managed separately. You may contact the appropriate management point to request assistance.</p> | ||
|
||
<h4>Princeton Research Data Service (PRDS)</h4> | ||
<p>Provides submission access and curatorial services for the main collections of research data that are discoverable in this repository. Contact: <%= link_to "[email protected]", "mailto:[email protected]" %>.</p> | ||
|
||
<h4>Princeton Plasma Physics Laboratory (PPPL)</h4> | ||
<p>Provides submission access and assistance for the Princeton Plasma Physics Laboratory collections of research data that are discoverable in this repository. Contact: <%= link_to "[email protected]", "mailto:[email protected]" %>.</p> | ||
|
||
<h4>Globus Support</h4> | ||
<p>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 "[email protected]", "mailto:[email protected]" %>. 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.</p> | ||
<p>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.</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |