rotimi-best / classroomio

Launch your Online Bootcamp in Minutes. Create your Own Udemy/Coursera In Minutes
https://classroomio.com
GNU Affero General Public License v3.0
422 stars 89 forks source link

Customization settings from LMS #280

Closed rotimi-best closed 1 month ago

rotimi-best commented 2 months ago

Feature Description

From settings in the admin dashboard, an admin should be able to customize the pages shown for students. You can't customize how the dashboard look just to make sure the UI is consistent with our documentation.

Use Case

No response

Proposed Solution

No response

Alternatives (optional)

No response

Additional Context

No response

Please check the boxes that apply to this feature request.

github-actions[bot] commented 2 months ago

Thanks for the issue, our team will look into it as soon as possible. If you would like to work on this issue, please wait for us to decide if it's ready. To claim an issue that does not have the "needs triage" label, please leave a comment that says ".take". If you have any questions, please reach out to us on Discord or follow up on the issue itself. For full info on how to contribute, please check out our contributors guide

rotimi-best commented 2 months ago

What to disable

Dashboard

  1. Option to disable Community UI
  2. Option to disable Exercises.
  3. Update banner image
  4. Update banner text

Course

  1. Disable News feed
  2. Disable grading

Apps

  1. Disable poll
  2. Disable live comments

Data specification

Add a column in the organization table called customizations and it should store a JSON like this

dashboard: { community: false, exercises: false, bannerImage: 'link_to_image', bannerText: '' },
course: {newsFeed: false, grading: false},
apps: {poll: true, comments: false}

UI

You should then use this JSON to determine the settings to display. Please follow the same convention we currently have in our settings UI.

Add a new section under Theme and it should look like the custom domain section where you can go to a seperate settings page.

Screenshot 2024-04-27 at 6 43 38 AM

Now in the settings page let it look like this landing page settings page within individual sections on the left and on the right the specific settings

image

IMPORTANT

Please reuse the same components used in other settings here, don't use custom component or custom styling. This is to keep our settings consistent for people to easily understand it.