Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
VT2 Видеотехнологии
ONVIF-PTZ proxy
Commits
2a4a2a28
Commit
2a4a2a28
authored
1 year ago
by
Mikhail Sennikov
Browse files
Options
Download
Patches
Plain Diff
Fix Depends
parent
854b9ca5
main
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Backend/proxy_switch/swarm_switch.py
+9
-7
Backend/proxy_switch/swarm_switch.py
database/api/cam_groups.py
+1
-1
database/api/cam_groups.py
with
10 additions
and
8 deletions
+10
-8
Backend/proxy_switch/swarm_switch.py
+
9
−
7
View file @
2a4a2a28
from
fastapi
import
APIRouter
,
Response
,
HTTPException
,
status
from
fastapi
import
APIRouter
,
Response
,
HTTPException
,
status
,
Depends
from
node.swarm
import
NodeSwarm
from
database.schemas.cam_groups
import
GroupFull
...
...
@@ -8,18 +8,20 @@ swarm = NodeSwarm()
@switch_router.post
(
"/set_group_id/{group_id}"
,
response_model
=
GroupFull
)
async
def
set_group
(
group_id
:
int
async
def
set_group_id
(
group_id
:
int
,
set_group_by_id
=
Depends
(
swarm
.
set_group_by_id
)
):
group
=
await
swarm
.
set_group_by_id
(
group_id
)
group
=
await
set_group_by_id
(
group_id
)
return
group
@switch_router.post
(
"/set_group_slug/{group_slug}"
,
response_model
=
GroupFull
)
async
def
set_group
(
group_slug
:
str
async
def
set_group_slug
(
group_slug
:
str
,
set_group_by_slug
=
Depends
(
swarm
.
set_group_by_slug
)
):
group
=
await
swarm
.
set_group_by_slug
(
group_slug
)
group
=
await
set_group_by_slug
(
group_slug
)
return
group
...
...
This diff is collapsed.
Click to expand it.
database/api/cam_groups.py
+
1
−
1
View file @
2a4a2a28
...
...
@@ -107,7 +107,7 @@ async def list_user_groups(
@db_cam_groups_router.post
(
"/user/{user_id}"
,
response_model
=
GroupFull
,
tags
=
[
"Users"
])
async
def
add_
cam
_group
(
async
def
add_
user
_group
(
user_id
:
int
,
group_id
:
int
,
user_repo
:
UserRepository
=
Depends
(
db
.
get_repository
(
UserRepository
)),
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets