-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1175 from it-novum/development
openITCOCKPIT 4.2
- Loading branch information
Showing
288 changed files
with
70,703 additions
and
20,778 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
name: "\U0001F41B Bug report" | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. You can upload screenshots via drag and drop | ||
|
||
**Versions** | ||
* openITCOKPIT Server Version: 4.x.x | ||
* Operating system | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,20 @@ | ||
--- | ||
name: "\U0001F680 Feature request" | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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,14 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: 🕵️♀️ openITCOCKPIT Monitoring Agent | ||
url: https://github.com/it-novum/openitcockpit-agent-go/ | ||
about: Please post all issues related to the openITCOCKPIT Monitoring Agent into the corresponding repository. | ||
- name: 💬 Discord | ||
url: https://discord.gg/G8KhxKuQ9G | ||
about: Join the openITCOCKPIT Community Discord | ||
- name: Reddit | ||
url: https://www.reddit.com/r/openitcockpit/ | ||
about: Join the openITCOCKPIT subreddit | ||
- name: Report a security vulnerability | ||
url: https://openitcockpit.io/security/ | ||
about: Please review our security policy for more details |
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
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
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,94 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
use Migrations\AbstractMigration; | ||
|
||
/** | ||
* Class MysqlWizardMigration | ||
* | ||
* Created via: | ||
* oitc migrations create MysqlWizardMigration | ||
* | ||
* Run migration: | ||
* oitc migrations migrate | ||
* | ||
*/ | ||
class MysqlWizardMigration extends AbstractMigration { | ||
|
||
/** | ||
* Whether the tables created in this migration | ||
* should auto-create an `id` field or not | ||
* | ||
* This option is global for all tables created in the migration file. | ||
* If you set it to false, you have to manually add the primary keys for your | ||
* tables using the Migrations\Table::addPrimaryKey() method | ||
* | ||
* @var bool | ||
*/ | ||
public $autoId = false; | ||
|
||
/** | ||
* Change Method. | ||
* | ||
* More information on this method is available here: | ||
* https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method | ||
* @return void | ||
*/ | ||
public function change() { | ||
$this->table('wizard_assignments') | ||
->addColumn('id', 'integer', [ | ||
'autoIncrement' => true, | ||
'default' => null, | ||
'limit' => 11, | ||
'null' => false, | ||
]) | ||
->addPrimaryKey(['id']) | ||
->addColumn('uuid', 'string', [ | ||
'default' => null, | ||
'limit' => 37, | ||
'null' => false, | ||
]) | ||
->addColumn('type_id', 'string', [ | ||
'default' => null, | ||
'limit' => 37, | ||
'null' => false, | ||
]) | ||
->addIndex( | ||
[ | ||
'uuid', | ||
], | ||
['unique' => true] | ||
) | ||
->create(); | ||
|
||
$this->table('servicetemplates_to_wizard_assignments') | ||
->addColumn('id', 'integer', [ | ||
'autoIncrement' => true, | ||
'default' => null, | ||
'limit' => 11, | ||
'null' => false, | ||
]) | ||
->addPrimaryKey(['id']) | ||
->addColumn('servicetemplate_id', 'integer', [ | ||
'default' => null, | ||
'limit' => 11, | ||
'null' => false, | ||
]) | ||
->addColumn('wizard_assignment_id', 'integer', [ | ||
'default' => null, | ||
'limit' => 11, | ||
'null' => false, | ||
]) | ||
->addIndex( | ||
[ | ||
'wizard_assignment_id', | ||
] | ||
) | ||
->addIndex( | ||
[ | ||
'servicetemplate_id', | ||
] | ||
) | ||
->create(); | ||
} | ||
} |
Oops, something went wrong.