Skip to content

Commit

Permalink
Corrects definitions file.
Browse files Browse the repository at this point in the history
  • Loading branch information
stiehlrod committed Nov 14, 2024
1 parent d7a2a2d commit f4b501a
Showing 1 changed file with 24 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,22 +59,31 @@ module ClaimantServiceBean
data: nil
)
)
end

module ClaimantService
DEFINITION =
Service.new(
bean: ClaimantServiceBean::DEFINITION,
path: 'ClaimantServiceBean'
)

module FindAssignedFlashes
DEFINITION =
Action.new(
service: ClaimantService::DEFINITION,
name: 'findAssignedFlashes',
key: 'return'
)
end

module AddFlash
DEFINITION =
Action.new(
service: ClaimantService::DEFINITION,
name: 'addFlash',
key: 'return'
)
end
module AddFlash
DEFINITION =
Action.new(
service: ClaimantService::DEFINITION,
name: 'addFlash',
key: 'return'
)
end
end

Expand All @@ -84,7 +93,14 @@ module ClaimantWebService
bean: ClaimantServiceBean::DEFINITION,
path: 'ClaimantWebService'
)
end

module ClaimantWebService
DEFINITION =
Service.new(
bean: ClaimantServiceBean::DEFINITION,
path: 'ClaimantServiceBean'
)
module FindPoaByParticipantId
DEFINITION =
Action.new(
Expand Down

0 comments on commit f4b501a

Please sign in to comment.