ash_phoenix/README.md

25 lines
995 B
Markdown
Raw Normal View History

2020-10-21 06:54:35 +13:00
# AshPhoenix
[![Elixir CI](https://github.com/ash-project/ash_phoenix/actions/workflows/elixir.yml/badge.svg)](https://github.com/ash-project/ash_phoenix/actions/workflows/elixir.yml)
2020-10-21 07:38:50 +13:00
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
2020-10-21 14:52:28 +13:00
[![Coverage Status](https://coveralls.io/repos/github/ash-project/ash_phoenix/badge.svg?branch=main)](https://coveralls.io/github/ash-project/ash_phoenix?branch=main)
2020-10-21 07:38:50 +13:00
[![Hex version badge](https://img.shields.io/hexpm/v/ash_phoenix.svg)](https://hex.pm/packages/ash_phoenix)
2020-10-21 06:54:35 +13:00
See the module documentation for more information:
- `AshPhoenix.LiveView`: for liveview querying utilities
- `AshPhoenix.Form`: Utilities for using forms with Ash changesets
2020-10-21 06:54:35 +13:00
2020-10-21 07:38:50 +13:00
Roadmap:
- UI authorization utilities e.g `<%= if authorized_to_do?(resource, action, actor) do %>`
- Potentially helpers for easily connecting buttons to resource actions
2020-10-21 06:54:35 +13:00
```elixir
def deps do
[
2022-06-29 14:32:06 +12:00
{:ash_phoenix, "~> 0.7.2-rc.2"}
2020-10-21 06:54:35 +13:00
]
end
```