Skip to content

Commit

Permalink
Merge pull request #75 from atschabu/fix_tokenssrv
Browse files Browse the repository at this point in the history
fix(versions) #61: correct interface role for module tokens
  • Loading branch information
lilgallon authored Jan 22, 2024
2 parents b5272ee + bd59015 commit 62452c1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class TokensCpoServer(
) : OcpiSelfRegisteringModuleServer(
ocpiVersion = VersionNumber.V2_2_1,
moduleID = ModuleID.tokens,
interfaceRole = InterfaceRole.SENDER,
interfaceRole = InterfaceRole.RECEIVER,
versionsRepository = versionsRepository,
basePathOverride = basePathOverride
) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class TokensEmspServer(
) : OcpiSelfRegisteringModuleServer(
ocpiVersion = VersionNumber.V2_2_1,
moduleID = ModuleID.tokens,
interfaceRole = InterfaceRole.RECEIVER,
interfaceRole = InterfaceRole.SENDER,
versionsRepository = versionsRepository,
basePathOverride = basePathOverride
) {
Expand Down

0 comments on commit 62452c1

Please sign in to comment.