[x] Code has unit tests? (If no explain in _otherinformation)
[x] Builds on localhost
[x] Builds/Runs in docker compose
What is the current behavior?
The AddBkmkReq record does not contain a boolean field named scrapable.
What is the new behavior?
The new boolean field scrapable has been added to the AddBkmkReq record, with the default value set to true as discussed in issue #223. Additionally, the BookmarkControllerTest class has been updated to ensure the tests run successfully.
Does this introduce a breaking change?
[ ] Yes
[x] No
Other information
Looks like whenever I run ./gradlew spotlessApply it fails due to the DisableTenantFilter annotation class checked by the removeUnusedImports() method in the build.gradle file for the server directory. Worth looking into.
Hello @R-Sandor, could you have a look at the PR, I also went ahead with some changes which I thought were necessary. Please let me know what you think. Thanks!
Issue number: #224
Checklist
What is the current behavior?
The
AddBkmkReq
record does not contain a boolean field namedscrapable
.What is the new behavior?
The new boolean field
scrapable
has been added to theAddBkmkReq
record, with the default value set totrue
as discussed in issue #223. Additionally, theBookmarkControllerTest
class has been updated to ensure the tests run successfully.Does this introduce a breaking change?
Other information
Looks like whenever I run
./gradlew spotlessApply
it fails due to theDisableTenantFilter
annotation class checked by theremoveUnusedImports()
method in thebuild.gradle
file for the server directory. Worth looking into.