-
Notifications
You must be signed in to change notification settings - Fork 55
Conversation
Codecov Report
@@ Coverage Diff @@
## main #262 +/- ##
==========================================
- Coverage 24.87% 24.67% -0.21%
==========================================
Files 31 31
Lines 3063 3084 +21
==========================================
- Hits 762 761 -1
- Misses 2184 2206 +22
Partials 117 117
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
@@ -2,12 +2,18 @@ package router | |||
|
|||
import ( | |||
"context" | |||
crypto2 "crypto" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: rename alias to gocrypto or similar
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
pkg/service/presentation/service.go
Outdated
return &model.CreatePresentationDefinitionResponse{ | ||
PresentationDefinition: storedPresentation.PresentationDefinition, | ||
}, nil | ||
m := &model.CreatePresentationDefinitionResponse{} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
either
var m model.CreatePresentationDefinitionResponse
or
m := new(model.CreatePresentationDefinitionResponse)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good - two small comments
Overview
This PR adds JWTs for presentation definitions. This means that it is the implementation for presentation request.
Description
A couple of changes happened with this PR.
Author
, was introduced for creating presentation definitions.How Has This Been Tested?
Unit tests were updated, as well as integration tests.