From 737eb45c9db0dd845ba3b9160f0e4fefafe2c7cc Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 24 Apr 2024 03:20:46 +0000 Subject: [PATCH] more tests and some fixes --- .github/workflows/main.yml | 9 +++++++-- js/Calendar.js | 21 --------------------- 2 files changed, 7 insertions(+), 23 deletions(-) delete mode 100755 js/Calendar.js diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e1e05f8..278096d 100755 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,10 +13,15 @@ on: - cron: '0 0 1,15 * *' jobs: - general_module_workflow: + general_module_workflow_php: uses: Karaka-Management/Karaka/.github/workflows/php_template.yml@develop secrets: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_PAT: ${{ secrets.GH_PAT }} CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - + general_module_workflow_js: + uses: Karaka-Management/Karaka/.github/workflows/js_template.yml@develop + secrets: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GH_PAT: ${{ secrets.GH_PAT }} + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file diff --git a/js/Calendar.js b/js/Calendar.js deleted file mode 100755 index a4a33ba..0000000 --- a/js/Calendar.js +++ /dev/null @@ -1,21 +0,0 @@ -(function (omsModule, undefined) { - omsModule.Calendar = function () { - this.layout = omsModule.Calendar.layout.BLOCKS; - this.interval = null; - this.selectedElement = null; - this.subCalendars = []; - - }; - - omsModule.Calendar.prototype.render = function () { - }; - - omsModule.Calendar.prototype.renderBlocks = function () { - }; - - omsModule.Calendar.prototype.renderList = function () { - }; - - omsModule.Calendar.prototype.renderTimeline = function () { - }; -}(window.omsModule = window.omsModule || {})); \ No newline at end of file