-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/development' into feature/CONNEC…
…TOR-50/endpoints-object
- Loading branch information
Showing
200 changed files
with
15,172 additions
and
2,560 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,8 @@ | ||
- add docblocks to all methods, classes, and properties | ||
- add return types to all methods | ||
- add type hints to all methods | ||
- add default values to all methods | ||
- add phpstan and psalm annotations to all methods | ||
- add phpunit tests to all methods | ||
- add inline comments to all logic explaining the steps being taken | ||
- use readonly properties where appropriate |
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,18 @@ | ||
name: Main Branch Protection | ||
|
||
#on: | ||
# pull_request: | ||
# branches: | ||
# - main | ||
|
||
#jobs: | ||
# check-branch: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Check branch | ||
# run: | | ||
# if [[ ${GITHUB_HEAD_REF} != development ]] && [[ ${GITHUB_HEAD_REF} != documentation ]] && ! [[ ${GITHUB_HEAD_REF} =~ ^hotfix/ ]]; | ||
# then | ||
# echo "Error: Pull request must come from 'development', 'documentation' or 'hotfix/' branch" | ||
# exit 1 | ||
# fi |
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,21 @@ | ||
name: Lint Check | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- development | ||
- main | ||
|
||
jobs: | ||
lint-check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install dependencies | ||
run: npm i | ||
|
||
- name: Linting | ||
run: npm run lint |
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,3 +1,4 @@ | ||
# OpenConector | ||
|
||
Provides gateway and service bus functionality like mapping, translation and synchronisation of data | ||
|
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 |
---|---|---|
|
@@ -8,12 +8,12 @@ | |
The OpenConnector Nextcloud app provides a ESB-framework to work together in an (open) data ecosystem | ||
- 📲 Synchronize your data sources | ||
- 📲 Synchronize your data sources | ||
- 📰 Send cloud events | ||
- 🆓 Map and translate API calls | ||
]]></description> | ||
<version>0.1.11</version> | ||
<version>0.1.26</version> | ||
<licence>agpl</licence> | ||
<category>integration</category> | ||
<author mail="[email protected]" homepage="https://www.conduction.nl/">Conduction</author> | ||
|
@@ -27,12 +27,16 @@ The OpenConnector Nextcloud app provides a ESB-framework to work together in an | |
<database min-version="10">pgsql</database> | ||
<database>sqlite</database> | ||
<database min-version="8.0">mysql</database> | ||
|
||
<lib>curl</lib> | ||
|
||
<owncloud max-version="0" min-version="0"/> | ||
</dependencies> | ||
|
||
<background-jobs> | ||
<job>OCA\OpenConnector\Cron\LogCleanUpTask</job> | ||
</background-jobs> | ||
|
||
<navigations> | ||
<navigation> | ||
<id>openconnector</id> | ||
|
@@ -41,4 +45,9 @@ The OpenConnector Nextcloud app provides a ESB-framework to work together in an | |
<icon>app.svg</icon> | ||
</navigation> | ||
</navigations> | ||
|
||
<settings> | ||
<admin>OCA\OpenConnector\Settings\OpenConnectorAdmin</admin> | ||
<admin-section>OCA\OpenConnector\Sections\OpenConnectorAdmin</admin-section> | ||
</settings> | ||
</info> |
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.