forked from CMU-17313Q/cmu-17313q-f24-nodebb-f24-NodeBB
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Implement Resources Button Functionality and Resources Page #38
Open
rmmahmou
wants to merge
18
commits into
f24
Choose a base branch
from
add-resources-button-functionality
base: f24
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
rmmahmou
changed the title
Implement Resources Button and Resources Page
Implement Resources Button Functionality and Resources Page
Oct 2, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Implemented Resources Page:
Created a new controller (resources-button.js) to handle requests to the resources page.
Developed a corresponding view template (resources-button.tpl) to display the resources page content.
The resources page includes a section for useful links.
Files Changed:
src/controllers/resources-button.js
src/views/resources-button.tpl
Updated Routes:
Added a new route for the resources button functionality, ensuring that the resources page can be accessed via the defined path.
Files Changed:
src/routes/index.js (added route for /resources-button)
Controller Index Update:
Updated the controller index file to include the new resources button controller, allowing it to be properly referenced in the routes.
Files Changed:
src/controllers/index.js (added reference to resources-button)
Testing:
Verified that the resources button is visible and functional.
Accessed the resources page and confirmed that the content is rendering as expected.