Skip to content

Commit

Permalink
Add Reactive One-Time Token Login support
Browse files Browse the repository at this point in the history
  • Loading branch information
CrazyParanoid committed Sep 18, 2024
1 parent 4855287 commit c60a57f
Show file tree
Hide file tree
Showing 20 changed files with 2,637 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2017 the original author or authors.
* Copyright 2002-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -16,6 +16,8 @@

package org.springframework.security.config.web.server;

import org.springframework.security.web.server.ui.OneTimeTokenSubmitPageGeneratingWebFilter;

/**
* @author Rob Winch
* @since 5.0
Expand Down Expand Up @@ -67,6 +69,16 @@ public enum SecurityWebFiltersOrder {

LOGOUT_PAGE_GENERATING,

/**
* {@link org.springframework.security.web.server.authentication.ott.GenerateOneTimeTokenWebFilter}
*/
ONE_TIME_TOKEN,

/**
* {@link OneTimeTokenSubmitPageGeneratingWebFilter}
*/
ONE_TIME_TOKEN_SUBMIT_PAGE_GENERATING,

/**
* {@link org.springframework.security.web.server.context.SecurityContextServerWebExchangeWebFilter}
*/
Expand Down

Large diffs are not rendered by default.

Loading

0 comments on commit c60a57f

Please sign in to comment.