Skip to content

Release 2.0.0

Latest
Compare
Choose a tag to compare
@amarjanica amarjanica released this 12 Apr 08:33
· 6 commits to main since this release

Changed

  • Changed to fluent writing permission in a route.
            web::scope("").route(
                "/",
                permission()
                    .check(web::get())
                    .validate(dummy_permission_check)
                    .to(index)
                    .build(),
            ),
  • Deprecated check and check_with_custom_deny in favor of permission() builder.
  • Fixed disappearing Payload from handler.