-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New entity: RepertoryEntry related to Order with many to one. Only certified orders can have it's Entryies. * Entryies describe order with additional fields. * Additional field in Order entity: additional fee. * New search Order by id functionality. * Current subject type and id are now included in url. * New share subject functionality (via url with typa and id). * Content of warnings is now avialable on icon hover. * Archves tab was removed: deleted and settled orders are now in Orders tab (via filters). * Browser history integration: move back / forward updates current subject without page reload. * New functionality in Invoices tab: orders can be updated directly from there.
- Loading branch information
Showing
157 changed files
with
8,434 additions
and
6,017 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
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,29 @@ | ||
name: JS lint | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
run-linters: | ||
name: Run linters | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out Git repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12 | ||
|
||
- name: Create config | ||
run: | | ||
touch ./package.json | ||
echo '{"devDependencies": {"eslint": "^8.0.0"}}' > ./package.json | ||
touch ./.eslintrc | ||
echo '{"rules": {"semi": ["error", "always"],"quotes": ["error", "double"]}}' > ./.eslintrc | ||
- name: Install Node.js dependencies | ||
run: npm install eslint | ||
|
||
- name: Run linters | ||
run: ./node_modules/.bin/eslint ./public/js -c ./dev/eslint/.eslintrc.json --ignore-path ./dev/eslint/.eslintignore |
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.