Skip to content

Commit

Permalink
FIX license header + Changelog + move ManageSettings.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentD06 committed Jul 17, 2024
1 parent 41cda6f commit 0f5ef7c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ All notable changes to this project will be documented in this file.
Note : This feature involves an internal updating of the API. The rules must be exported and deleted then imported with the new version of the plugin.
### Changes
* Remove severity and use event definition priority ([issue #100](https://github.com/airbus-cyber/graylog-plugin-logging-alert/issues/100))
* Move wizard configuration in system/configurations ([issue #83](https://github.com/airbus-cyber/graylog-plugin-logging-alert/issues/83))

### Bug Fixes
* Import failure when description is null ([issue #132](https://github.com/airbus-cyber/graylog-plugin-alert-wizard/issues/132))

## [5.2.1](https://github.com/airbus-cyber/graylog-plugin-alert-wizard/compare/5.2.0...5.2.1)
### Bug Fixes
Expand Down
19 changes: 18 additions & 1 deletion src/web/wizard/components/configuration/WizardAlertConfig.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
/*
* Copyright (C) 2018 Airbus CyberSecurity (SAS)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* <http://www.mongodb.com/licensing/server-side-public-license>.
*/

import React, {useEffect, useState} from "react";
import ManageSettings from "../ManageSettings";
import ManageSettings from "./ManageSettings";
import WizardConfigurationResource from "../../resources/WizardConfigurationResource";
import { Spinner } from "components/common";
import { IntlProvider } from "react-intl";
Expand Down
1 change: 0 additions & 1 deletion src/web/wizard/pages/WizardPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import { useState, useEffect } from 'react';
import { Col, Row } from 'components/bootstrap';
import { IfPermitted, PageHeader, DocumentTitle, Spinner } from 'components/common';
import AlertRuleList from 'wizard/components/rules/AlertRuleList';
import ManageSettings from 'wizard/components/ManageSettings';
import { IntlProvider, FormattedMessage } from 'react-intl';
import packageJson from '../../../../package.json';
import messages_fr from 'translations/fr.json';
Expand Down

0 comments on commit 0f5ef7c

Please sign in to comment.