-
-
Notifications
You must be signed in to change notification settings - Fork 778
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add redirect for broken links on "Project Team Meetings" page #4906
Comments
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
Hi @yffu, thank you for taking up this issue! Hfla appreciates you :) Do let fellow developers know about your:- You're awesome! P.S. - You may not take up another issue until this issue gets merged (or closed). Thanks again :) |
i. Availability: After 5 PT Daily |
Hey @yffu - Good question- thanks for asking! The short answer is that this needs to be changed in VRMS, which we don't have access to. I will ask Matt P. or Bonnie if they can edit this. Here's the long answer: project managers for each project enter details about their meetings into the VRMS app. The "Project Meetings" (and "Events") pages are querying data from VRMS- see api-events.js. Here is the object data that the page receives from VRMS: See lower left: People Depot and Community of Practice: Engineering So the underscore on the "Project Meetings" page is coming from the entry for "dsc" in People Depot's VMRS. |
@MattPereira could you edit People Depot's VMRS entry for "dsc" in their Thursday 4-5 meeting? Currently it there is an underscore, so could this be changed to a blank "" or maybe "Weekly meeting" ? Last I heard, no one at People Depot has access to VMRS... |
@t-will-gillis got u fam its a blank string now also i'll reach out to fang to ensure he has access |
Thanks for the answer @t-will-gillis. It makes sense that it's from vrms so that it's flexible. Much appreciate the explanations and the examples in the screenshots. |
Overview
On our project-meetings and events pages the hrefs to "People Depot" and "Tables" link to an undefined page "https://www.hackforla.org/projects/people-depot". We want the href for "People Depot" and "Tables" to link to each project's GitHub account until they have pages in the _projects folder.
Action Items
The API_ENDPOINT for data on the project meetings page comes from VRMS. The query to VRMS returns an "event" object, and
event.hflaWebsiteUrl == ""
for both "People Depot" and "Tables" since neither has a project page on the website.if (event) {
on Line 35 and beforelet eventHtml;
on Line 36:function display_object(item)
, we need to query the githubUrl from VRMS by adding the following entry inconst rv_object
after thehflaWebsiteUrl
:Resources/Instructions
Screenshot showing current link when "People Depot" is selected on "Project Meetings" page
Screenshot showing current link when "People Depot" is selected on "Events" page
The text was updated successfully, but these errors were encountered: