Skip to content

Commit

Permalink
feat(BPM failure): add API to retrieve flownode failures (#3246)
Browse files Browse the repository at this point in the history
Add API for BPMFailure.
API are SP only with license key protection (`PROCESS_MONITORING`)
Only Administrator profile has access to the REST Endpoint.

Covers [BPM-315](https://bonitasoft.atlassian.net/browse/BPM-315)
Covers [BPM-316](https://bonitasoft.atlassian.net/browse/BPM-316)
  • Loading branch information
abirembaut authored Nov 19, 2024
1 parent 2e03b57 commit d3aaa4b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

@Configuration
@EnableWebMvc
@ComponentScan({ "org.bonitasoft.web.rest.server.api" })
@ComponentScan({ "org.bonitasoft.web.rest.server.api", "com.bonitasoft.web.rest.server.api" })
public class SpringWebConfiguration extends WebMvcConfigurationSupport {

@Bean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ PUT|bpm/timerEventTrigger=[flownode_management]
GET|bpm/diagram=[process_visualization]
POST|bpm/message=[flownode_management]
POST|bpm/signal=[flownode_management]
GET|bpm/failure=[flownode_management, case_management]

# Portal resources
GET|portal/profile=[profile_visualization]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,8 @@ PUT|bpm/connectorInstance=[profile|Administrator, profile|Process\u0020manager,
GET|bpm/archivedConnectorInstance=[profile|Administrator, check|org.bonitasoft.permissions.ConnectorInstancePermissionRule]
GET|bpm/connectorFailure=[profile|Administrator, profile|Process\u0020manager]

# BPM failures
GET|bpm/failure=[profile|Administrator]

# UserPermissionRule
# Let the user access and modify only himself
Expand Down

0 comments on commit d3aaa4b

Please sign in to comment.