forked from KelvinTegelaar/CIPP
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'KelvinTegelaar:main' into main
- Loading branch information
Showing
33 changed files
with
2,320 additions
and
267 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
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 |
---|---|---|
@@ -1,22 +1,13 @@ | ||
![CyberDrain Light](github_assets/img/CIPP.png#gh-dark-mode-only) | ||
![CyberDrain Dark](github_assets/img/CIPP-Light.png#gh-light-mode-only) | ||
|
||
<center><h1>Sponsored by</h1></center> | ||
<p align="center"> | ||
|
||
![OIT](github_assets/img/oitpsonsor_light.png) | ||
![Immybot](github_assets/img/Immybot.png) | ||
![NinjaOne](github_assets/img/NinjaOne-Light.png#gh-dark-mode-only) | ||
![NinjaOne](github_assets/img/NinjaOne-Dark.png#gh-light-mode-only) | ||
![Huntress](github_assets/img/Huntress.png) | ||
![HaloPSA](github_assets/img/halopsa-red-grey.svg) | ||
|
||
</p> | ||
|
||
# What is this? | ||
|
||
The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners. The current Microsoft partner landscape makes it fairly hard to manage multi tenant situations, with loads of manual work. Microsoft Lighthouse might resolve this in the future but development of this is lagging far behind development of the current market for Microsoft Partners. | ||
The CyberDrain Improved Partner Portal is a portal to help manage administration for Microsoft Partners. The current Microsoft partner landscape makes it fairly hard to manage multi tenant situations, with loads of manual work. Microsoft Lighthouse might resolve this in the future but development of this is lagging far behind development of the current market for Microsoft Partners. | ||
This project is a way to help you with administration, with user management, and deploying your own preferred standards. It's not a replacement for security tools, or a way to cut costs on specific subscriptions. The tool should assist you in removing the gripes with standard partner management and save you several hours per engineer per month. | ||
For more information, we recommend checking out our website [here](https://cipp.app) | ||
For detailed documentation about features of CIPP, please check out our [documentation.](https://docs.cipp.app) | ||
|
||
This project is a way to help you with administration, with user management, and deploying your own preferred standards. It's not a replacement for security tools, or a way to cut costs on specific subscriptions. The tool should assist you in removing the gripes with standard partner management and save you several hours per engineer per month. | ||
# Our sponsors | ||
|
||
for more information, we recommend checking out our website [here](https://cipp.app) | ||
You can find our sponsors [here.](https://docs.cipp.app/#our-sponsors) |
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 |
---|---|---|
@@ -1 +1 @@ | ||
5.9.3 | ||
6.0.2 |
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
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,24 @@ | ||
import PropTypes from 'prop-types' | ||
|
||
export function CellBytes({ cell }) { | ||
return (cell / 1024 ** 3).toFixed(2) | ||
} | ||
|
||
CellBytes.propTypes = { | ||
propName: PropTypes.string, | ||
cell: PropTypes.object, | ||
} | ||
|
||
export function CellBytesToPercentage({ row, value, dividedBy }) { | ||
return Math.round((row[value] / row[dividedBy]) * 100 * 10) / 10 | ||
} | ||
|
||
CellBytesToPercentage.propTypes = { | ||
propName: PropTypes.string, | ||
cell: PropTypes.object, | ||
} | ||
|
||
export const cellBytesFormatter = () => (row, index, column, id) => { | ||
const cell = column.selector(row) | ||
return CellBytes({ cell }) | ||
} |
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,16 @@ | ||
import PropTypes from 'prop-types' | ||
import CippCopyToClipboard from '../utilities/CippCopyToClipboard' | ||
|
||
export function CellCopyButton({ cell }) { | ||
return <CippCopyToClipboard text={cell} /> | ||
} | ||
|
||
CellCopyButton.propTypes = { | ||
propName: PropTypes.string, | ||
cell: PropTypes.object, | ||
} | ||
|
||
export const cellCopyButtonFormatter = () => (row, index, column, id) => { | ||
const cell = column.selector(row) | ||
return CellCopyButton({ cell }) | ||
} |
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
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
Oops, something went wrong.