Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…nto HEAD
  • Loading branch information
akshay kumar committed Nov 15, 2019
2 parents e37bf28 + dc91f79 commit bd37112
Show file tree
Hide file tree
Showing 8 changed files with 73 additions and 2 deletions.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEPLATES/Bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: 🐛 Bug Report
about: Report errors and problems

---

**Description**
<!-- A clear and concise description of the problem. -->

**How to reproduce**
<!-- Code and/or config needed to reproduce the problem. -->

**Possible Solution**
<!--- Optional: only if you have suggestions on a fix/reason for the bug -->

**Additional context**
<!-- Optional: any other context about the problem: log messages, screenshots, etc. -->
12 changes: 12 additions & 0 deletions .github/ISSUE_TEPLATES/Feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: 🚀 Feature Request
about: RFC and ideas for new features and improvements

---

**Description**
<!-- A clear and concise description of the new feature. -->

**Example**
<!-- A simple example of the new feature in action (include PHP code, YAML config, etc.)
If the new feature changes an existing feature, include a simple before/after comparison. -->
13 changes: 13 additions & 0 deletions .github/ISSUE_TEPLATES/Support_question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: ⛔ Support Question
about: Visit https://support.uvdesk.com/ to learn more about how the uvdesk team can assist you

---

We use GitHub issues only to discuss about uvdesk bugs and new features. For customizations and extended support:

- Contact us at [email protected]
- Visit official support website (https://support.uvdesk.com/en/)
- Visit our community forums (https://forums.uvdesk.com)

Thanks!
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!--
Thank you for contributing to UVDesk! Please fill out this description template to help us to process your pull request.
-->

### 1. Why is this change necessary?


### 2. What does this change do, exactly?


### 3. Please link to the relevant issues (if any).
8 changes: 8 additions & 0 deletions .github/SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Security Policy
===============

⚠ PLEASE DON'T DISCLOSE SECURITY-RELATED ISSUES PUBLICLY, SEE BELOW.

If you have found a security issue in Uvdesk, please send the details to [email protected] and don't disclose it publicly until we can provide a fix for it.

Thanks!
5 changes: 5 additions & 0 deletions CHANGELOG-1.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ CHANGELOG for 1.0.x

This changelog references any relevant changes introduced in 1.0 minor versions.

* 1.0.2 (2019-11-15)
* **Misc. Updates:**
* Included Github issue templates
* Updated composer dependencies & set minimum required php version to 7.2

* 1.0.1 (2019-10-22)
* **Misc. Updates:**
* Updated README.md with link to the official gitter chat for uvdesk/extension-framework
Expand Down
5 changes: 5 additions & 0 deletions UIComponents/Dashboard/Navigation/Apps.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ public static function getRouteName() : string
return 'uvdesk_extensions_applications_dashboard';
}

public static function getRoles() : array
{
return [];
}

public function getChildrenRoutes() : array
{
return [];
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
}
],
"require": {
"php": "^7.1.3",
"php": "^7.2",
"uvdesk/composer-plugin": "^1.0",
"uvdesk/core-framework": "^1.0"
"uvdesk/core-framework": "^1.0.3"
},
"autoload": {
"psr-4": { "Webkul\\UVDesk\\ExtensionFrameworkBundle\\": "" }
Expand Down

0 comments on commit bd37112

Please sign in to comment.