Skip to content

Commit

Permalink
Merge pull request #107 from jakowenko/beta
Browse files Browse the repository at this point in the history
v1.0.0
  • Loading branch information
jakowenko committed Sep 21, 2021
2 parents 77dd776 + b50a58f commit 9da7939
Show file tree
Hide file tree
Showing 8 changed files with 976 additions and 953 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
with:
node-version: 14
- name: Install dependencies
run: npm ci
run: npm install --save-dev
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
158 changes: 85 additions & 73 deletions api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const express = require('express');
const { jwt, validate, expressValidator } = require('../middlewares');
const controller = require('../controllers/cameras.controller');
const controller = require('../controllers/camera.controller');

const { param, query } = expressValidator;

Expand Down
2 changes: 1 addition & 1 deletion api/src/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const router = express.Router();

router.use('/auth', require('./auth.routes'));
router.use('/config', require('./config.routes'));
router.use('/cameras', require('./cameras.routes'));
router.use('/camera', require('./camera.routes'));
router.use('/recognize', require('./recognize.routes'));
router.use('/match', require('./match.routes'));
router.use('/filesystem', require('./fs.routes'));
Expand Down
Loading

0 comments on commit 9da7939

Please sign in to comment.