Skip to content

Commit

Permalink
Remove settings-manager
Browse files Browse the repository at this point in the history
  • Loading branch information
soupette committed Oct 2, 2019
1 parent b6c0e2e commit 6b0acc7
Show file tree
Hide file tree
Showing 57 changed files with 9 additions and 15,336 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function LeftMenuLinkContainer({ plugins, ...rest }) {
// Check if the plugins list is empty or not and display plugins by name
const pluginsLinks = !isEmpty(plugins) ? (
map(sortBy(plugins, 'name'), plugin => {
if (plugin.id !== 'email' && plugin.id !== 'settings-manager') {
if (plugin.id !== 'email') {
const pluginSuffixUrl = plugin.suffixUrl
? plugin.suffixUrl(plugins)
: '';
Expand Down Expand Up @@ -94,7 +94,6 @@ function LeftMenuLinkContainer({ plugins, ...rest }) {
</li>
);

const hasSettingsManager = get(plugins, 'settings-manager', null);
const staticLinks = [
{
icon: 'list',
Expand Down Expand Up @@ -125,14 +124,6 @@ function LeftMenuLinkContainer({ plugins, ...rest }) {
{staticLinks.map(link => (
<LeftMenuLink {...rest} key={link.destination} {...link} />
))}
{hasSettingsManager && (
<LeftMenuLink
{...rest}
icon="gear"
label={messages.configuration.id}
destination="/plugins/settings-manager"
/>
)}
</ul>
</div>
</div>
Expand Down
2 changes: 0 additions & 2 deletions packages/strapi-admin/admin/src/plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ module.exports = {
.default,
// 'strapi-plugin-documentation': require('../../../strapi-plugin-documentation/admin/src')
// .default,
'strapi-plugin-settings-manager': require('../../../strapi-plugin-settings-manager/admin/src')
.default,
// 'strapi-plugin-email': require('../../../strapi-plugin-email/admin/src')
// .default,
// 'strapi-plugin-upload': require('../../../strapi-plugin-upload/admin/src')
Expand Down
1 change: 0 additions & 1 deletion packages/strapi-generate-new/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ module.exports = (projectDirectory, cliArguments) => {
'strapi',
'strapi-admin',
'strapi-utils',
'strapi-plugin-settings-manager',
'strapi-plugin-content-type-builder',
'strapi-plugin-content-manager',
'strapi-plugin-users-permissions',
Expand Down
8 changes: 7 additions & 1 deletion packages/strapi-plugin-settings-manager/README.md
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# Strapi plugin
# Strapi plugin Settings Manager

⚠️ This package is deprecated ⚠️

We have decided to deprecate this package because we believe that this plugin should be integrated in the `strapi-admin` package.
As we are building a plugin ecosystem we know that many plugins will have configurations and those configurations should be served by the core package.
This plugin was originally thought to allow developers to set databases, their server configurations using the UI. However this configurations since these settings are for advanced developers we think that they are at ease with using the appropriate files to do so.
101 changes: 0 additions & 101 deletions packages/strapi-plugin-settings-manager/admin/.npmignore

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.

This file was deleted.

Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 6b0acc7

Please sign in to comment.