Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
arsnova-click-v2-backend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
ARSnova
arsnova-click-v2-backend
Commits
30794e3f
Commit
30794e3f
authored
Aug 23, 2019
by
Christopher Mark Fullarton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes exchange creation
parent
68ae2355
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/db/quiz/QuizDAO.ts
src/db/quiz/QuizDAO.ts
+1
-1
No files found.
src/db/quiz/QuizDAO.ts
View file @
30794e3f
...
...
@@ -157,7 +157,7 @@ class QuizDAO extends AbstractDAO<Array<IQuizEntity>> {
}
const
entity
=
new
QuizEntity
(
quizDoc
);
await
AMQPConnector
.
channel
.
assertExchange
(
`quiz_
${
encodeURI
(
entity
.
name
)}
`
,
'
fanout
'
);
await
AMQPConnector
.
channel
.
assertExchange
(
encodeURI
(
`quiz_
${
entity
.
name
}
`
)
,
'
fanout
'
);
this
.
storage
.
push
(
entity
);
return
entity
;
}
...
...
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