Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xenon
Vortex
Commits
00cefc6e
Verified
Commit
00cefc6e
authored
Jul 14, 2020
by
Martin Löffler
Browse files
Fixed manipulation API path
parent
9f3a76ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/manipulation.rs
src/manipulation.rs
+1
-1
No files found.
src/manipulation.rs
View file @
00cefc6e
...
...
@@ -93,7 +93,7 @@ pub fn routes(
// This is to make sure that MANIPULATION_TOKEN is present before we handle any requests
let
_
=
&
MANIPULATION_TOKEN
;
warp
::
path
!
(
"manipulation"
)
warp
::
path
(
"manipulation"
)
.and
(
warp
::
header
::
exact
(
"authorization"
,
&
MANIPULATION_TOKEN
))
.and
(
create_room
.or
(
create_user
))
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment