The Ash Authentication framework
Find a file
2024-05-09 10:39:28 -04:00
.devcontainer chore(devcontainer): store Dialyzer PLTs in a volume. 2022-12-16 11:49:39 +13:00
.github chore: disable auto-releasing for now. 2024-04-02 09:21:13 +13:00
.vscode feat: OpenID Connect Strategy (#197) 2023-05-04 13:15:24 +12:00
config chore: no bcrypt 2024-05-09 10:30:48 -04:00
dev improvement: re-integrate ash_graphql and ash_json_api RCs. 2024-04-02 09:23:30 +13:00
documentation chore: no bcrypt 2024-05-09 10:30:48 -04:00
lib chore: no bcrypt 2024-05-09 10:30:48 -04:00
priv chore: add ash-functions for tests 2024-04-25 22:29:17 -04:00
test chore: add ash-functions for tests 2024-04-25 22:29:17 -04:00
.check.exs chore: Add extra checks in the CI pipeline. 2023-09-22 10:42:46 +12:00
.doctor.exs feat(PasswordReset): allow users to request and reset their password. (#22) 2022-11-02 18:18:20 +13:00
.formatter.exs improvement: re-integrate ash_graphql and ash_json_api RCs. 2024-04-02 09:23:30 +13:00
.gitignore chore: install and configure dialyxir. 2022-09-28 10:11:00 +13:00
.sobelow-conf chore: Add sobelow and mix_audit to CI. (#337) 2023-06-19 10:44:07 +12:00
CHANGELOG.md chore: release version v4.0.0-rc.6 2024-04-12 09:36:40 +12:00
LICENSE improvement!: Major redesign of DSL and code structure. (#35) 2022-11-23 09:09:41 +13:00
mix.exs chore: test 2024-05-09 10:39:28 -04:00
mix.lock chore(deps): Bump ash_postgres from 2.0.0-rc.10 to 2.0.0-rc.11 (#652) 2024-04-24 13:00:25 -04:00
README.md chore: release version v4.0.0-rc.6 2024-04-12 09:36:40 +12:00

AshAuthentication

Ash Authentication Logo

Elixir CI License: MIT Hex version badge

AshAuthentication provides drop-in support for user authentication for users of the Ash framework. It is designed to be highly configurable, with sensible defaults covering the most common use-cases.

Installation

The package can be installed by adding ash_authentication to your list of dependencies in mix.exs:

def deps do
  [
    {:ash_authentication, "~> 4.0.0-rc.6"}
  ]
end

Documentation

See the official documentation for more.

Additionally, documentation for the latest release will be available on hexdocs and for the main branch.

Contributing

  • To contribute updates, fixes or new features please fork and open a pull-request against main.
  • To regenerate cheat sheets for the DSLs, run mix spark.cheat_sheets. For new strategies ensure you've added them to the extensions and documentation groups in mix.exs.
  • Please use conventional commits - this allows us to dynamically generate the changelog.
  • Feel free to ask any questions on out GitHub discussions page.

Licence

AshAuthentication is licensed under the terms of the MIT license. See the LICENSE file in this repository for details.