Skip to content
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

added small documentation info alert into the github configuration view #350

Merged
merged 1 commit into from
Mar 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/app/views/admin/github.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, { useEffect, useState } from "react";
import { Grid, Card, Divider } from "@material-ui/core";
import { Grid } from "@material-ui/core";
import { Alert, AlertTitle } from "@material-ui/lab";
import { useSelector } from 'react-redux';
import { Breadcrumb } from "../../../matx";
import bc from "../../services/breathecode";
Expand Down Expand Up @@ -95,6 +96,9 @@ const GithubSettings = () => {
/>
</div>
<div>
<Alert severity="info">
<AlertTitle>Sync your school students in-or-out of your github organization as they are added or removed from the cohorts, <a className="underline" href="https://4geeks.com/lesson/github-organization-user-sync" target="_blank">you can read more about it here.</a></AlertTitle>
</Alert>
<Grid container spacing={3} className="mt-4">
{ settings.beta && <Grid item md={5} xs={12}>
<GithubOrganization
Expand Down