https://github.com/j3rn/meseeks
Can do! A simple Elixir authorization system!
https://github.com/j3rn/meseeks
authorization elixir elixir-lang phoenix phoenix-framework rbac
Last synced: about 1 year ago
JSON representation
Can do! A simple Elixir authorization system!
- Host: GitHub
- URL: https://github.com/j3rn/meseeks
- Owner: J3RN
- License: mit
- Created: 2020-07-11T04:07:01.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-11T04:37:48.000Z (almost 6 years ago)
- Last Synced: 2024-03-14T20:21:46.343Z (over 2 years ago)
- Topics: authorization, elixir, elixir-lang, phoenix, phoenix-framework, rbac
- Language: Elixir
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Meseeks
Can do! A simple Elixir authorization system!

## Getting Started
In order to reduce duplication of docs, please read the usage information in [the Meseeks documentation on Hexdocs](https://hexdocs.pm/meseeks).
## Installation
The package can be installed by adding `meseeks` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:meseeks, "~> 0.1.0"}
]
end
```
## When to use
If you are storing your permissions inside a JWT, you're probably looking for [Guardian](https://github.com/ueberauth/guardian#permissions). However, if you need a dead simple authorization system for RBAC otherwise, you've come to the right place!