Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comply with review comments
Browse files Browse the repository at this point in the history
zingmane committed May 14, 2024
1 parent 838d839 commit 418414c
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -118,7 +118,7 @@ TODO add documentation for authentication and permission handling. Currently the
## Feature Flags
Feature flags are used to enable or disable certain features. They have to be configured in the configuration file.Feature flags are:
Feature flags are used to enable or disable certain features. They have to be configured in the configuration file. Feature flags are:
- `isRowPermissionCheckEnabled`: Enable or disable row permission checks (default: false)
- `isPublicFileServerEnabled`: Enable or disable the public file server. If enabled, files are accessible without authentication (default: false)
Original file line number Diff line number Diff line change
@@ -84,7 +84,6 @@ class CacheVerticle(tableauxConfig: TableauxConfig) extends ScalaVerticle with L
private def registerOnEventBus(): Future[_] = {
Future.sequence(
Seq(
registerHandler(eventBus, ADDRESS_SET_CELL, messageHandlerSetCell),
registerHandler(eventBus, ADDRESS_SET_CELL, messageHandlerSetCell),
registerHandler(eventBus, ADDRESS_RETRIEVE_CELL, messageHandlerRetrieveCell),
registerHandler(eventBus, ADDRESS_SET_ROW_PERMISSIONS, messageHandlerSetRowPermissions),

0 comments on commit 418414c

Please sign in to comment.