Skip to content

Commit

Permalink
Improve doc
Browse files Browse the repository at this point in the history
  • Loading branch information
AB-xdev committed Apr 3, 2024
1 parent 7ec3aaa commit 560439d
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 41 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# 1.0.0
<i>Initial release</i>
* The library consists of 2 main parts:
* ``extendable`` → Includes the bare minimum to make the Spring components extendable
* ``advanced`` → Contains components made on top of ``extendable`` with many customization options
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@

# spring-security-advanced-authentication-ui

Modernizes the default Spring Web Authentication UI and makes it easier customizable.

<details><summary>Show demo</summary>

<p align="center">
<img src="./assets/demo.png" alt="Demo" />
</p>

</details>

## Usage

The library provides an adapter that can be used like this:
Expand All @@ -20,7 +30,7 @@ public SecurityFilterChain configure(final HttpSecurity http) throws Exception
}
```

For a more detailed scenario is available in the [demo](./spring-security-advanced-authentication-ui-demo/).
A more detailed scenario is available in the [demo](./spring-security-advanced-authentication-ui-demo/).

## Installation
[Installation guide for the latest release](https://github.com/xdev-software/spring-security-advanced-authentication-ui/releases/latest#Installation)
Expand Down
Binary file added assets/demo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@
import software.xdev.spring.security.web.authentication.ui.advanced.AdditionalRegistrationData;


/**
* Additional properties for OAuth2 client.
*
* @apiNote You may need to use {@link org.springframework.boot.context.properties.EnableConfigurationProperties}
* @see org.springframework.boot.autoconfigure.security.oauth2.client.OAuth2ClientProperties
*/
@ConfigurationProperties(prefix = "spring.security.oauth2.client")
public class AdditionalOAuth2ClientProperties
{
Expand Down

This file was deleted.

0 comments on commit 560439d

Please sign in to comment.